Browse Source

test: don't run test-tick-processor.js on Aix

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: https://github.com/nodejs/node/pull/5093
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: thefourtheye - Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
v4.x
Michael Dawson 9 years ago
committed by Myles Borins
parent
commit
875a6d02ae
  1. 10
      test/parallel/test-tick-processor.js

10
test/parallel/test-tick-processor.js

@ -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 =

Loading…
Cancel
Save