generated from WebAssembly/wasi-proposal-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more details about running tests
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
See https://github.com/WebAssembly/wasi-testsuite | ||
# Running tests | ||
The following command executes wasi-threads tests using wasmtime runtime (please note wasi-threads proposal is still in development in Wasmtime and requires [this change](https://github.com/bytecodealliance/wasmtime/pull/5484) to work). | ||
|
||
```bash | ||
git clone -b prod/testsuite-all https://github.com/WebAssembly/wasi-testsuite | ||
cd wasi-testsuite/ | ||
TEST_RUNTIME_EXE="wasmtime --wasm-features=threads --wasi-modules=experimental-wasi-threads" python3 test-runner/wasi_test_runner.py \ | ||
-r adapters/wasmtime.sh \ | ||
-t tests/proposals/wasi-threads/ | ||
``` | ||
|
||
See https://github.com/WebAssembly/wasi-testsuite for details. |