diff options
author | Max Graey <maxgraey@gmail.com> | 2021-09-01 18:56:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 08:56:12 -0700 |
commit | b50064bde4f584813398b7696ce7a4a3bf1cbbaa (patch) | |
tree | ff307f7239dedc752c73ab2d61a6e6729bff1ab3 /scripts/test | |
parent | d66d2d9bb0ea1e067c6b3e2d322a1d2357336893 (diff) | |
download | binaryen-b50064bde4f584813398b7696ce7a4a3bf1cbbaa.tar.gz binaryen-b50064bde4f584813398b7696ce7a4a3bf1cbbaa.tar.bz2 binaryen-b50064bde4f584813398b7696ce7a4a3bf1cbbaa.zip |
[Refactoring] Cleanup asm2wasm. Use JS instead ASM prefix where possible. NFC (#4090)
Diffstat (limited to 'scripts/test')
-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 d3af99455..d84189891 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -199,7 +199,6 @@ BINARYEN_INSTALL_DIR = os.path.dirname(options.binaryen_bin) WASM_OPT = [os.path.join(options.binaryen_bin, 'wasm-opt')] WASM_AS = [os.path.join(options.binaryen_bin, 'wasm-as')] WASM_DIS = [os.path.join(options.binaryen_bin, 'wasm-dis')] -ASM2WASM = [os.path.join(options.binaryen_bin, 'asm2wasm')] WASM2JS = [os.path.join(options.binaryen_bin, 'wasm2js')] WASM_CTOR_EVAL = [os.path.join(options.binaryen_bin, 'wasm-ctor-eval')] WASM_SHELL = [os.path.join(options.binaryen_bin, 'wasm-shell')] @@ -224,7 +223,6 @@ if options.valgrind: WASM_OPT = wrap_with_valgrind(WASM_OPT) WASM_AS = wrap_with_valgrind(WASM_AS) WASM_DIS = wrap_with_valgrind(WASM_DIS) - ASM2WASM = wrap_with_valgrind(ASM2WASM) WASM_SHELL = wrap_with_valgrind(WASM_SHELL) |