Chromium Code Reviews| Index: test/mjsunit/regress/regress-1639.js |
| diff --git a/test/mjsunit/regress/regress-1639.js b/test/mjsunit/regress/regress-1639.js |
| index ed68c97df858b4ded6c0a07b448cb0536f5f30a4..15a2bd20c8bf5fe8f79d73d854499a5b3dcc5bb7 100644 |
| --- a/test/mjsunit/regress/regress-1639.js |
| +++ b/test/mjsunit/regress/regress-1639.js |
| @@ -1,4 +1,4 @@ |
| -// Copyright 2011 the V8 project authors. All rights reserved. |
| +// Copyright 2012 the V8 project authors. All rights reserved. |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are |
| // met: |
| @@ -29,6 +29,7 @@ |
| // Get the Debug object exposed from the debug context global object. |
| Debug = debug.Debug |
| var breaks = 0; |
| +var exception = false; |
| function sendCommand(state, cmd) { |
| // Get the debug command processor in paused state. |
| @@ -47,15 +48,18 @@ function listener(event, exec_state, event_data, data) { |
| "should not break on unexpected lines") |
| assertEquals('BREAK ' + breaks, line.substr(-7)); |
| breaks++; |
| - sendCommand(exec_state, { |
| - seq: 0, |
| - type: "request", |
| - command: "continue", |
| - arguments: { stepaction: "next" } |
| - }); |
| + if (breaks < 4) { |
| + sendCommand(exec_state, { |
| + seq: 0, |
| + type: "request", |
| + command: "continue", |
| + arguments: { stepaction: "next" } |
| + }); |
| + } |
| } |
| } catch (e) { |
| print(e); |
| + exception = true; |
| } |
| } |
| @@ -82,4 +86,4 @@ function c() { |
| // Set a break point and call to invoke the debug event listener. |
| Debug.setBreakPoint(b, 0, 0); |
| a(b); |
| -// BREAK 3 |
| +assertFalse(exception); // BREAK 3 |
|
Michael Starzinger
2012/05/03 11:51:21
Could we have some kind of NOP statement that actu
|