summaryrefslogtreecommitdiff
path: root/test/tick-processor
diff options
context:
space:
mode:
author章礼平 <LipperZack@gmail.com>2017-07-16 15:07:33 +0800
committerRich Trott <rtrott@gmail.com>2017-07-16 02:24:47 -0700
commitfb37922cf350f56a3da6e4b083951241750d380f (patch)
treeaf3de2345c7a6c60e0361c0dd53e9f57dd07c851 /test/tick-processor
parent5d3609dbdd98b3ea3c53a3020305b7567979c888 (diff)
downloadnode-new-fb37922cf350f56a3da6e4b083951241750d380f.tar.gz
test: change isAix to isAIX
This makes the naming more consistent with existing properties like isFreeBSD where the capitalization of the property name is consistent with the conventional styling of the operating system. PR-URL: https://github.com/nodejs/node/pull/14263 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.com>
Diffstat (limited to 'test/tick-processor')
-rw-r--r--test/tick-processor/test-tick-processor-builtin.js2
-rw-r--r--test/tick-processor/test-tick-processor-cpp-core.js2
-rw-r--r--test/tick-processor/test-tick-processor-unknown.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/tick-processor/test-tick-processor-builtin.js b/test/tick-processor/test-tick-processor-builtin.js
index 0fb839f8d1..f94964813a 100644
--- a/test/tick-processor/test-tick-processor-builtin.js
+++ b/test/tick-processor/test-tick-processor-builtin.js
@@ -6,7 +6,7 @@ if (!common.enoughTestCpu)
if (common.isWindows ||
common.isSunOS ||
- common.isAix ||
+ common.isAIX ||
common.isLinuxPPCBE ||
common.isFreeBSD)
common.skip('C++ symbols are not mapped for this os.');
diff --git a/test/tick-processor/test-tick-processor-cpp-core.js b/test/tick-processor/test-tick-processor-cpp-core.js
index dc1aed41a7..496d06b555 100644
--- a/test/tick-processor/test-tick-processor-cpp-core.js
+++ b/test/tick-processor/test-tick-processor-cpp-core.js
@@ -6,7 +6,7 @@ if (!common.enoughTestCpu)
if (common.isWindows ||
common.isSunOS ||
- common.isAix ||
+ common.isAIX ||
common.isLinuxPPCBE ||
common.isFreeBSD)
common.skip('C++ symbols are not mapped for this os.');
diff --git a/test/tick-processor/test-tick-processor-unknown.js b/test/tick-processor/test-tick-processor-unknown.js
index c0f5f332b2..182f8c957c 100644
--- a/test/tick-processor/test-tick-processor-unknown.js
+++ b/test/tick-processor/test-tick-processor-unknown.js
@@ -6,7 +6,7 @@ const common = require('../common');
// 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)
+if (common.isAIX)
common.skip('AIX address range too big for scripts.');
if (!common.enoughTestCpu)