summaryrefslogtreecommitdiff
path: root/test/common/index.js
diff options
context:
space:
mode:
authorXu Meng <mengxumx@cn.ibm.com>2019-11-29 02:28:49 -0600
committerRichard Lau <riclau@uk.ibm.com>2019-12-02 12:33:50 -0500
commitf0a31e5eb9c8512ec1d2badc9c372e544a0922e4 (patch)
treee7250e154d597deeb99e4cce23977a65f5fd419b /test/common/index.js
parent3b484edce3736cbcba26be1eec512df5282ca5bf (diff)
downloadandroid-node-v8-f0a31e5eb9c8512ec1d2badc9c372e544a0922e4.tar.gz
android-node-v8-f0a31e5eb9c8512ec1d2badc9c372e544a0922e4.tar.bz2
android-node-v8-f0a31e5eb9c8512ec1d2badc9c372e544a0922e4.zip
test: add an indicator `isIBMi`
We have to skip some test cases on IBM i. On IBM i, process.platform and os.platform() both return aix, It is not enough to differentiate between IBM i and real AIX system. Also updated parallel/test-cluster-bind-privileged-port.js for test. PR-URL: https://github.com/nodejs/node/pull/30714 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/common/index.js')
-rw-r--r--test/common/index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/common/index.js b/test/common/index.js
index 888a1feba3..09b7f55778 100644
--- a/test/common/index.js
+++ b/test/common/index.js
@@ -102,6 +102,9 @@ if (process.argv.length === 2 &&
const isWindows = process.platform === 'win32';
const isAIX = process.platform === 'aix';
+// On IBMi, process.platform and os.platform() both return 'aix',
+// It is not enough to differentiate between IBMi and real AIX system.
+const isIBMi = os.type() === 'OS400';
const isLinuxPPCBE = (process.platform === 'linux') &&
(process.arch === 'ppc64') &&
(os.endianness() === 'BE');
@@ -762,6 +765,7 @@ module.exports = {
isAIX,
isAlive,
isFreeBSD,
+ isIBMi,
isLinux,
isLinuxPPCBE,
isMainThread,