summaryrefslogtreecommitdiff
path: root/test/debugger
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-03-02 12:48:53 -0800
committerJames M Snell <jasnell@gmail.com>2016-03-07 11:20:43 -0800
commiteb3f04d81df020f509d149f2c3ea2f1b6dd14c84 (patch)
tree5561df5bf05470de29457bfe747c52d3af1c38cb /test/debugger
parent3eff42bbca531873905ef4478e8d6ec9a7485d3a (diff)
downloadandroid-node-v8-eb3f04d81df020f509d149f2c3ea2f1b6dd14c84.tar.gz
android-node-v8-eb3f04d81df020f509d149f2c3ea2f1b6dd14c84.tar.bz2
android-node-v8-eb3f04d81df020f509d149f2c3ea2f1b6dd14c84.zip
test: remove broken debugger scenarios
`test-debug-break-on-uncaught` was hanging on the domain and parse error scenarios. These tests are not run in CI and may have been broken for a very long time. Refs: https://github.com/nodejs/node/issues/3156 Refs: https://github.com/nodejs/node/commit/c16963b9 PR-URL: https://github.com/nodejs/node/pull/5532 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <r@va.gg>
Diffstat (limited to 'test/debugger')
-rw-r--r--test/debugger/test-debug-break-on-uncaught.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/debugger/test-debug-break-on-uncaught.js b/test/debugger/test-debug-break-on-uncaught.js
index 397c4225d2..8a5af3abea 100644
--- a/test/debugger/test-debug-break-on-uncaught.js
+++ b/test/debugger/test-debug-break-on-uncaught.js
@@ -7,11 +7,6 @@ var debug = require('_debugger');
addScenario('global.js', null, 2);
addScenario('timeout.js', null, 2);
-addScenario('domain.js', null, 10);
-
-// Exception is thrown from vm.js via module.js (internal file)
-// var compiledWrapper = runInThisContext(wrapper, filename, 0, true);
-addScenario('parse-error.js', 'vm.js', null);
run();