summaryrefslogtreecommitdiff
path: root/scripts/test/shared.py
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2017-06-09 20:28:31 -0700
committerGitHub <noreply@github.com>2017-06-09 20:28:31 -0700
commite82a9c4602a42c674155594e73595488bc5b9720 (patch)
treeccdcbb99594046a4ba275c22cc27b3e72aca8966 /scripts/test/shared.py
parentdf58435d385ddf49c501eafd4e324ebe0caa8cbb (diff)
parent314a97687fc0acc7d5b9fa9d58447dc54cf09288 (diff)
downloadbinaryen-e82a9c4602a42c674155594e73595488bc5b9720.tar.gz
binaryen-e82a9c4602a42c674155594e73595488bc5b9720.tar.bz2
binaryen-e82a9c4602a42c674155594e73595488bc5b9720.zip
Merge pull request #1038 from WebAssembly/fix_ctor_eval_path
Fix path to wasm-ctor-eval binary used in test code
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r--scripts/test/shared.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index f6f06722c..b71545965 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -155,6 +155,7 @@ 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')]
+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')]