diff options
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-x | test/run-tests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/run-tests.py b/test/run-tests.py index 0a452025..89094d9c 100755 --- a/test/run-tests.py +++ b/test/run-tests.py @@ -119,6 +119,12 @@ TOOLS = { ('RUN', '%(wasm-objdump)s -h %(temp_file)s.wasm'), ('VERBOSE-ARGS', ['--print-cmd', '-v']), ], + 'run-gen-wasm-decompile': [ + ('RUN', '%(gen_wasm_py)s %(in_file)s -o %(temp_file)s.wasm'), + ('RUN', '%(wasm-validate)s %(temp_file)s.wasm'), + ('RUN', '%(wasm-decompile)s %(temp_file)s.wasm'), + ('VERBOSE-ARGS', ['--print-cmd', '-v']), + ], 'run-opcodecnt': [ ('RUN', '%(wat2wasm)s %(in_file)s -o %(temp_file)s.wasm'), ('RUN', '%(wasm-opcodecnt)s %(temp_file)s.wasm'), |