Skip to content

Commit 69150ca

Browse files
mhdawsonMyles Borins
authored and
Myles Borins
committed
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 <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: thefourtheye - Sakthipriyan Vairamani <[email protected]>
1 parent 4a492b9 commit 69150ca

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/parallel/test-tick-processor.js

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ var path = require('path');
55
var cp = require('child_process');
66
var common = require('../common');
77

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

0 commit comments

Comments
 (0)