diff options
author | Sam Clegg <sbc@chromium.org> | 2018-06-28 17:42:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-28 17:42:15 -0700 |
commit | 11047d8791eabf77114164b3643bc5f8cd1ee298 (patch) | |
tree | 8820fbab9f5437d01118d735be74b2dece9f3d95 /scripts/test/shared.py | |
parent | 487cee5ac474ec5971fad94ecbd85075ba5dbc92 (diff) | |
download | binaryen-11047d8791eabf77114164b3643bc5f8cd1ee298.tar.gz binaryen-11047d8791eabf77114164b3643bc5f8cd1ee298.tar.bz2 binaryen-11047d8791eabf77114164b3643bc5f8cd1ee298.zip |
Remove s2wasm (#1607)
s2wasm is no longer used my emscripten and as far as I know now
as no other users.
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r-- | scripts/test/shared.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 52dd74fd7..3d0ab5228 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -170,7 +170,6 @@ WASM2ASM = [os.path.join(options.binaryen_bin, 'wasm2asm')] WASM_CTOR_EVAL = [os.path.join(options.binaryen_bin, 'wasm-ctor-eval')] WASM_SHELL = [os.path.join(options.binaryen_bin, 'wasm-shell')] WASM_MERGE = [os.path.join(options.binaryen_bin, 'wasm-merge')] -S2WASM = [os.path.join(options.binaryen_bin, 's2wasm')] WASM_REDUCE = [os.path.join(options.binaryen_bin, 'wasm-reduce')] WASM_METADCE = [os.path.join(options.binaryen_bin, 'wasm-metadce')] WASM_EMSCRIPTEN_FINALIZE = [os.path.join(options.binaryen_bin, @@ -192,7 +191,6 @@ if options.valgrind: WASM_DIS = wrap_with_valgrind(WASM_DIS) ASM2WASM = wrap_with_valgrind(ASM2WASM) WASM_SHELL = wrap_with_valgrind(WASM_SHELL) - S2WASM = wrap_with_valgrind(S2WASM) os.environ['BINARYEN'] = os.getcwd() |