From 97813be8e689dfbf3da44e9604672fcdb304dd62 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Thu, 4 Feb 2016 18:30:13 -0500 Subject: [PATCH] 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 Reviewed-By: Ben Noordhuis Reviewed-By: James M Snell Reviewed-By: thefourtheye - Sakthipriyan Vairamani --- test/parallel/test-tick-processor.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/parallel/test-tick-processor.js b/test/parallel/test-tick-processor.js index 84146ed4817775..b22e2ec14a3c6e 100644 --- a/test/parallel/test-tick-processor.js +++ b/test/parallel/test-tick-processor.js @@ -4,6 +4,16 @@ var assert = require('assert'); 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); // Unknown checked for to prevent flakiness, if pattern is not found,