mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
test: skip a wasi test on IBMi PASE
The API clock_getres with attribute API CLOCK_THREAD_CPUTIME_ID is not supported on IBM i PASE. PR-URL: https://github.com/nodejs/node/pull/32459 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
@@ -57,12 +57,20 @@ if (process.argv[2] === 'wasi-child') {
|
||||
}
|
||||
|
||||
runWASI({ test: 'cant_dotdot' });
|
||||
runWASI({ test: 'clock_getres' });
|
||||
|
||||
// Tests that are currently unsupported on IBM i PASE.
|
||||
if (!common.isIBMi) {
|
||||
runWASI({ test: 'clock_getres' });
|
||||
}
|
||||
runWASI({ test: 'exitcode', exitCode: 120 });
|
||||
runWASI({ test: 'fd_prestat_get_refresh' });
|
||||
runWASI({ test: 'freopen', stdout: `hello from input2.txt${EOL}` });
|
||||
runWASI({ test: 'getentropy' });
|
||||
runWASI({ test: 'getrusage' });
|
||||
|
||||
// Tests that are currently unsupported on IBM i PASE.
|
||||
if (!common.isIBMi) {
|
||||
runWASI({ test: 'getrusage' });
|
||||
}
|
||||
runWASI({ test: 'gettimeofday' });
|
||||
runWASI({ test: 'link' });
|
||||
runWASI({ test: 'main_args' });
|
||||
|
||||
Reference in New Issue
Block a user