Skip to content

Commit 205dd23

Browse files
Revert "Skip pthread_cond_busywait test in browser tests (#589)" (#590)
Update @bjorn3/browser_wasi_shim to version 0.4.2. This release includes a limited polyfill for `poll_oneoff`, which is necessary for the `pthread_cond` test to pass in the browser. bjorn3/browser_wasi_shim#88
1 parent 1377a93 commit 205dd23

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/scripts/browser-test/harness.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { chromium } from 'playwright';
2121
const SKIP_TESTS = [
2222
// "poll_oneoff" can't be implemented in the browser
2323
"libc-test/functional/pthread_cond",
24-
"libc-test/functional/pthread_cond_busywait",
2524
// atomic.wait32 can't be executed on the main thread
2625
"libc-test/functional/pthread_mutex",
2726
"libc-test/functional/pthread_tsd",

test/scripts/browser-test/run-test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* This script is served by `harness.mjs` and runs in the browser.
33
*/
4-
import { WASI, File, OpenFile, ConsoleStdout, PreopenDirectory } from 'https://cdn.jsdelivr.net/npm/@bjorn3/browser_wasi_shim@0.3.0/+esm'
4+
import { WASI, File, OpenFile, ConsoleStdout, PreopenDirectory } from 'https://cdn.jsdelivr.net/npm/@bjorn3/browser_wasi_shim@0.4.2/+esm'
55
import { polyfill } from 'https://cdn.jsdelivr.net/npm/[email protected]/polyfill.js/+esm';
66

77
/**

0 commit comments

Comments
 (0)