Skip to content

Commit

Permalink
test: skip a wasi test on IBMi PASE
Browse files Browse the repository at this point in the history
The API clock_getres with attribute API CLOCK_THREAD_CPUTIME_ID
is not supported on IBM i PASE.

PR-URL: #32459
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
dmabupt authored and addaleax committed Mar 30, 2020
1 parent 833d78a commit 986a605
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions test/wasi/test-wasi.js
Expand Up @@ -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' });
Expand Down

0 comments on commit 986a605

Please sign in to comment.