aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/debug-continue.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/debug-continue.js')
-rw-r--r--deps/v8/test/mjsunit/debug-continue.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/debug-continue.js b/deps/v8/test/mjsunit/debug-continue.js
index a501aa925c..55bbb29b1d 100644
--- a/deps/v8/test/mjsunit/debug-continue.js
+++ b/deps/v8/test/mjsunit/debug-continue.js
@@ -74,13 +74,14 @@ function listener(event, exec_state, event_data, data) {
// Test some illegal continue requests.
testArguments(exec_state, '{"stepaction":"maybe"}', false);
- testArguments(exec_state, '{"stepcount":-1}', false);
// Test some legal continue requests.
testArguments(exec_state, '{"stepaction":"in"}', true);
- testArguments(exec_state, '{"stepaction":"min"}', true);
testArguments(exec_state, '{"stepaction":"next"}', true);
testArguments(exec_state, '{"stepaction":"out"}', true);
+
+ // Step count argument is ignored.
+ testArguments(exec_state, '{"stepcount":-1}', true);
testArguments(exec_state, '{"stepcount":1}', true);
testArguments(exec_state, '{"stepcount":10}', true);
testArguments(exec_state, '{"stepcount":"10"}', true);