We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1893c0 commit deee235Copy full SHA for deee235
test/README.md
@@ -1,13 +1,23 @@
1
# Running tests
2
3
-The following command executes the `wasi-threads` tests using the Wasmtime
4
-runtime.
5
-
6
```bash
7
git clone -b prod/testsuite-all https://github.com/WebAssembly/wasi-testsuite
8
cd wasi-testsuite/
+```
+
+To execute the `wasi-threads` tests using the Wasmtime
9
+runtime:
10
+```bash
11
TEST_RUNTIME_EXE="wasmtime --wasm-features=threads --wasi-modules=experimental-wasi-threads" python3 test-runner/wasi_test_runner.py \
- -r adapters/wasmtime.sh \
12
+ -r adapters/wasmtime.py \
13
+ -t tests/proposals/wasi-threads/
14
15
16
+To execute the `wasi-threads` tests using the WAMR
17
18
19
+TEST_RUNTIME_EXE="iwasm" python3 test-runner/wasi_test_runner.py \
20
+ -r adapters/wasm-micro-runtime.py \
21
-t tests/proposals/wasi-threads/
22
```
23
0 commit comments