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

Commit

Permalink
test: Skip running test-tick-processor
Browse files Browse the repository at this point in the history
Skip running this test because node+chakracore doesn't support -prof option.

PR-URL: #30
Reviewed-By: Sandeep Agarwal <[email protected]>
Reviewed-By: Jianchun Xu <[email protected]>
  • Loading branch information
kunalspathak committed Feb 29, 2016
1 parent 50d1014 commit e2fc338
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/parallel/test-tick-processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ var assert = require('assert');
var cp = require('child_process');
var common = require('../common');

// Skip running this test for chakra engine because it doesn't
// support -prof option.
if (common.isChakraEngine) {
console.log('1..0 # Skipped: This test is disabled for chakra engine.');
return;
}

// TODO(mhdawson) Currently the test-tick-processor functionality in V8
// depends on addresses being smaller than a full 64 bits. Aix supports
// the full 64 bits and the result is that it does not process the
Expand Down

0 comments on commit e2fc338

Please sign in to comment.