summaryrefslogtreecommitdiff
path: root/test/README.md
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2018-01-24 16:27:28 -0800
committerGitHub <noreply@github.com>2018-01-24 16:27:28 -0800
commit7360bc9536203d949b7f11872e51252ae04cb366 (patch)
tree48868b66ef9ce31a8b63374c50ff56b4dce98b6a /test/README.md
parent89e86d1c68df2a9308b299643070535635eb5cf9 (diff)
downloadwabt-7360bc9536203d949b7f11872e51252ae04cb366.tar.gz
wabt-7360bc9536203d949b7f11872e51252ae04cb366.tar.bz2
wabt-7360bc9536203d949b7f11872e51252ae04cb366.zip
Remove `run-objdump.py`; replace with `RUN` cmds (#732)
* Remove `run-objdump.py`; replace with `RUN` cmds This CL introduces two new TOOLs for tests: * `run-objdump-gen-wasm`: Run objdump on wasm files generated by `gen-wasm.py`. * `run-objdump-spec`: Run objdump on wasm files generated by `wast2json`. For now, this requires each test to specify the files manually: `%(temp_file)s.0.wasm %(temp_file)s.1.wasm` etc. `gen_wasm_py` has been added as a new RUN variable as well. * Call FixPythonExecutable after expanding variables
Diffstat (limited to 'test/README.md')
-rw-r--r--test/README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/README.md b/test/README.md
index 1fdd7449..438a7c65 100644
--- a/test/README.md
+++ b/test/README.md
@@ -119,6 +119,12 @@ The currently supported list of tools (see
format.
- `run-objdump`: parse a wasm text file, convert it to binary, then run
`wasm-objdump` on it.
+- `run-objdump-gen-wasm`: parse a "gen-wasm" text file, convert it to binary,
+ then run `wasm-objdump` on it.
+- `run-objdump-spec`: parse a wast spec test file, convert it to JSON and a
+ collection of `.wasm` files, then run `wasm-objdump`. Note that the `.wasm`
+ files are not automatically passed to `wasm-objdump`, so each test must
+ specify them manually: `%(temp_file)s.0.wasm %(temp_file)s.1.wasm`, etc.
- `run-wasm-link`: parses a wasm text file which may contain multiple modules,
convert them to binary, then link them together via `wasm-link`.
- `run-roundtrip`: parse a wasm text file, convert it to binary, convert it