diff options
author | Ben Smith <binjimin@gmail.com> | 2018-01-21 21:59:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-21 21:59:43 -0800 |
commit | 8bcd84f39737a8f26da1dec33a80da7c7ee4e390 (patch) | |
tree | c0079aa79dd4dd4579b6412efe5c1c25b296cdbd /README.md | |
parent | 6ce14be1c40144dfe109e2bb4dd6e8bf2a459da5 (diff) | |
download | wabt-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.md | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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 |