aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js')
-rw-r--r--deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js b/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js
index 740634f68f..0a97e5dc35 100644
--- a/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js
+++ b/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js
@@ -103,8 +103,10 @@ var actions = [ "stepOut", "print", "stepOut", "print", "stepOut", "print",
function runAction(response)
{
var action = actions.shift();
- if (!action)
+ if (!action) {
InspectorTest.completeTest();
+ return;
+ }
if (action === "print") {
printCallFrames(response.params.callFrames);