summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-validate-stdio.js
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-05-18 01:20:25 +0200
committerAnna Henningsen <anna@addaleax.net>2018-06-06 19:44:11 +0200
commit229dca3dee552f448dc9026237625ed58e8acfdc (patch)
tree3d463874affcf1303318882fb2f9961f5aec7cca /test/parallel/test-child-process-validate-stdio.js
parentd1c096cc9d88a865094b91ef86b771cd23d8bfe7 (diff)
downloadandroid-node-v8-229dca3dee552f448dc9026237625ed58e8acfdc.tar.gz
android-node-v8-229dca3dee552f448dc9026237625ed58e8acfdc.tar.bz2
android-node-v8-229dca3dee552f448dc9026237625ed58e8acfdc.zip
test,tools: enable running tests under workers
Enable running tests inside workers by passing `--worker` to `tools/test.py`. A number of tests are marked as skipped, or have been slightly altered to fit the different environment. PR-URL: https://github.com/nodejs/node/pull/20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to 'test/parallel/test-child-process-validate-stdio.js')
-rw-r--r--test/parallel/test-child-process-validate-stdio.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-validate-stdio.js b/test/parallel/test-child-process-validate-stdio.js
index 4c4f137110..26e4c29767 100644
--- a/test/parallel/test-child-process-validate-stdio.js
+++ b/test/parallel/test-child-process-validate-stdio.js
@@ -30,7 +30,8 @@ common.expectsError(() => _validateStdio(stdio2, true),
{ code: 'ERR_IPC_SYNC_FORK', type: Error }
);
-{
+
+if (common.isMainThread) {
const stdio3 = [process.stdin, process.stdout, process.stderr];
const result = _validateStdio(stdio3, false);
assert.deepStrictEqual(result, {
@@ -42,4 +43,7 @@ common.expectsError(() => _validateStdio(stdio2, true),
ipc: undefined,
ipcFd: undefined
});
+} else {
+ common.printSkipMessage(
+ 'stdio is not associated with file descriptors in Workers');
}