Skip to content

Commit 6340974

Browse files
mhdawsonrvagg
authored andcommitted
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: #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>
1 parent c4ed5ec commit 6340974

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/parallel/test-tick-processor.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ var assert = require('assert');
44
var cp = require('child_process');
55
var common = require('../common');
66

7+
// TODO(mhdawson) Currently the test-tick-processor functionality in V8
8+
// depends on addresses being smaller than a full 64 bits. Aix supports
9+
// the full 64 bits and the result is that it does not process the
10+
// addresses correctly and runs out of memory
11+
// Disabling until we get a fix upstreamed into V8
12+
if (common.isAix) {
13+
console.log('1..0 # Skipped: Aix address range too big for scripts.');
14+
return;
15+
}
16+
717
common.refreshTmpDir();
818
process.chdir(common.tmpDir);
919
// Unknown checked for to prevent flakiness, if pattern is not found,

0 commit comments

Comments
 (0)