mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
a5376c5ce4
Move the child process code into a fixture and split the test so that it can be run in parallel and it's easier to identify where the failure is coming from. Also use the spawnSyncAndExitWithoutError() utility so that the test shows complete information on failure. Instead of marking all the wasi tests as flaky, only mark the wasi-poll one which is flaking in the CI now. PR-URL: https://github.com/nodejs/node/pull/51836 Refs: https://github.com/nodejs/node/issues/51822 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
15 lines
606 B
JavaScript
15 lines
606 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { checkoutEOL } = common;
|
|
const { testWasiPreview1 } = require('../common/wasi');
|
|
|
|
testWasiPreview1(['freopen'], {}, { stdout: `hello from input2.txt${checkoutEOL}` });
|
|
testWasiPreview1(['read_file'], {}, { stdout: `hello from input.txt${checkoutEOL}` });
|
|
testWasiPreview1(['read_file_twice'], {}, {
|
|
stdout: `hello from input.txt${checkoutEOL}hello from input.txt${checkoutEOL}`,
|
|
});
|
|
// Tests that are currently unsupported on Windows.
|
|
if (!common.isWindows) {
|
|
testWasiPreview1(['stdin'], { input: 'hello world' }, { stdout: 'hello world' });
|
|
}
|