Skip to content

Commit

Permalink
test: don't run test-tick-processor.js on Aix
Browse files Browse the repository at this point in the history
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
addresses correctly and runs of out memory.
Disabling until we get a fix upstreamed into V8.

PR-URL: #5093
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Ben Noordhuis <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: thefourtheye - Sakthipriyan Vairamani <[email protected]>
  • Loading branch information
mhdawson authored and Myles Borins committed Feb 18, 2016
1 parent 4a492b9 commit 69150ca
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/parallel/test-tick-processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ var path = require('path');
var cp = require('child_process');
var common = require('../common');

// 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
// addresses correctly and runs out of memory
// Disabling until we get a fix upstreamed into V8
if (common.isAix) {
console.log('1..0 # Skipped: Aix address range too big for scripts.');
return;
}

common.refreshTmpDir();
process.chdir(common.tmpDir);
var processor =
Expand Down

0 comments on commit 69150ca

Please sign in to comment.