summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2018-01-21 21:59:43 -0800
committerGitHub <noreply@github.com>2018-01-21 21:59:43 -0800
commit8bcd84f39737a8f26da1dec33a80da7c7ee4e390 (patch)
treec0079aa79dd4dd4579b6412efe5c1c25b296cdbd /README.md
parent6ce14be1c40144dfe109e2bb4dd6e8bf2a459da5 (diff)
downloadwabt-8bcd84f39737a8f26da1dec33a80da7c7ee4e390.tar.gz
wabt-8bcd84f39737a8f26da1dec33a80da7c7ee4e390.tar.bz2
wabt-8bcd84f39737a8f26da1dec33a80da7c7ee4e390.zip
Remove `run-interp.py`; use `RUN` commands instead (#730)
Many of the `test/run-*` Python scripts are essentially the python equivalent of shell scripts. They require tedious maintenance whenever the tools change, and have a significant amount of copied code. This CL removes `run-interp.py` as a relatively simple initial example.
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/README.md b/README.md
index e978419e..912555a0 100644
--- a/README.md
+++ b/README.md
@@ -200,19 +200,10 @@ $ out/wasm-interp test.json --spec
$ out/wasm-interp test.wasm -V 100 --run-all-exports
```
-As a convenience, you can use `test/run-interp.py` to convert a .wat file to
-binary first, then run it in the interpreter:
-
-```console
-$ test/run-interp.py --spec spec-test.wat
-20/20 tests.passed.
-```
-
You can use `-h` to get additional help:
```console
$ out/wasm-interp -h
-$ out/run-interp.py -h
```
## Running the test suite