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/find_exe.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/find_exe.py')
-rw-r--r-- | test/find_exe.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/find_exe.py b/test/find_exe.py index 80ea407d..d989879e 100644 --- a/test/find_exe.py +++ b/test/find_exe.py @@ -26,7 +26,7 @@ REPO_ROOT_DIR = os.path.dirname(SCRIPT_DIR) EXECUTABLES = [ 'wat2wasm', 'wast2json', 'wasm2wat', 'wasm-objdump', 'wasm-interp', 'wasm-opcodecnt', 'wat-desugar', 'spectest-interp', 'wasm-validate', - 'wasm2c', 'wasm-strip' + 'wasm2c', 'wasm-strip', 'wasm-decompile' ] GEN_WASM_PY = os.path.join(SCRIPT_DIR, 'gen-wasm.py') @@ -110,3 +110,7 @@ def GetWasm2CExecutable(override=None): def GetWasmStripExecutable(override=None): return FindExecutable('wasm-strip', override) + + +def GetWasmDecompileExecutable(override=None): + return FindExecutable('wasm-decompile', override) |