diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2019-10-24 08:08:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 08:08:25 -0700 |
commit | ffefb3ba2cdfca91fd20a8ac99c668f80140760d (patch) | |
tree | c9bc8b910dfb2623d3e800f7fdc747565d3d6b05 /test/run-tests.py | |
parent | 73f141d49a8759993e0a79c3a0e86dd23784378c (diff) | |
download | wabt-ffefb3ba2cdfca91fd20a8ac99c668f80140760d.tar.gz wabt-ffefb3ba2cdfca91fd20a8ac99c668f80140760d.tar.bz2 wabt-ffefb3ba2cdfca91fd20a8ac99c668f80140760d.zip |
wasm-decompile: Added initial tests. (#1195)
These are pretty minimal, more will be added as part of feature-PRs.
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-x | test/run-tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/run-tests.py b/test/run-tests.py index 021391c1..5b0291fd 100755 --- a/test/run-tests.py +++ b/test/run-tests.py @@ -138,6 +138,10 @@ TOOLS = { '%(out_dir)s', ]), ('VERBOSE-ARGS', ['--print-cmd', '-v']), + ], + 'run-wasm-decompile': [ + ('RUN', '%(wat2wasm)s --enable-multi-value %(in_file)s -o %(temp_file)s.wasm'), + ('RUN', '%(wasm-decompile)s --enable-multi-value %(temp_file)s.wasm'), ] } |