Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
test: ignore new failing tests
Browse files Browse the repository at this point in the history
* async-hooks/test-callback-error - depends on V8 option
  --abort-on-uncaught-exception
* inspector/test-off-with-session-then-on - tracked by
  #292

PR-URL: #295
  • Loading branch information
kfarnung committed Jun 12, 2017
1 parent 4b500db commit b0681ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/async-hooks/test-callback-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ const spawnSync = require('child_process').spawnSync;
const async_hooks = require('async_hooks');
const initHooks = require('./init-hooks');

if (common.isChakraEngine) {
common.skip('This test is disabled for chakra engine because it depends ' +
'on v8-option --abort-on-uncaught-exception');
return;
}

switch (process.argv[2]) {
case 'test_init_callback':
initHooks({
Expand Down
1 change: 1 addition & 0 deletions test/inspector/inspector.status
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ test-inspector-port-zero-cluster : PASS,FLAKY
[$jsEngine==chakracore]
test-bindings : PASS,FLAKY
test-inspector-break-when-eval : PASS,FLAKY
test-off-with-session-then-on : PASS,FLAKY

0 comments on commit b0681ba

Please sign in to comment.