diff options
author | Alon Zakai <azakai@google.com> | 2019-12-10 11:05:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 11:05:02 -0800 |
commit | 183bfb9eaab6ec7356144e8eb7534dcf97275384 (patch) | |
tree | f5cefcb45e1e3560b3de7ca8e257ae1823041378 /scripts/test | |
parent | 247884e68b30dedeb01457d6c7e50d4bba5e4abc (diff) | |
download | binaryen-183bfb9eaab6ec7356144e8eb7534dcf97275384.tar.gz binaryen-183bfb9eaab6ec7356144e8eb7534dcf97275384.tar.bz2 binaryen-183bfb9eaab6ec7356144e8eb7534dcf97275384.zip |
Look for bin/binaryen_js.js directly, instead of expecting us to copy it. (#2508)
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/shared.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 9ba94d574..1ec42bc59 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -184,7 +184,9 @@ 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, 'wasm-emscripten-finalize')] -BINARYEN_JS = os.path.join(options.binaryen_root, 'out', 'binaryen.js') +# Due to cmake limitations, we emit binaryen_js.js (see CMakeLists.txt +# for why). +BINARYEN_JS = os.path.join(options.binaryen_bin, 'binaryen_js.js') def wrap_with_valgrind(cmd): |