summaryrefslogtreecommitdiff
path: root/scripts/test/wasm2js.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2019-04-22 14:00:35 -0700
committerGitHub <noreply@github.com>2019-04-22 14:00:35 -0700
commitff710e63eaed7cf8fbf3042843f6243597da49be (patch)
tree204c03398c17c136690a2798d099554e6698f4f2 /scripts/test/wasm2js.py
parentf87de2ae0d430f8d4204df8fceb194c24e29b413 (diff)
downloadbinaryen-ff710e63eaed7cf8fbf3042843f6243597da49be.tar.gz
binaryen-ff710e63eaed7cf8fbf3042843f6243597da49be.tar.bz2
binaryen-ff710e63eaed7cf8fbf3042843f6243597da49be.zip
wasm2js: unreachability fixes (#2037)
Also test in pass-debug mode, for better coverage.
Diffstat (limited to 'scripts/test/wasm2js.py')
-rwxr-xr-xscripts/test/wasm2js.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py
index 1cad83a1b..5b83e1b21 100755
--- a/scripts/test/wasm2js.py
+++ b/scripts/test/wasm2js.py
@@ -19,7 +19,7 @@ import os
from support import run_command, split_wast
from shared import (
WASM2JS, MOZJS, NODEJS, fail_if_not_identical, options, tests,
- fail_if_not_identical_to_file
+ fail_if_not_identical_to_file, with_pass_debug
)
# tests with i64s, invokes, etc.
@@ -73,6 +73,8 @@ def test_wasm2js_output():
cmd += ['--allow-asserts']
out = run_command(cmd)
+ # also verify it passes pass-debug verifications
+ with_pass_debug(lambda: run_command(cmd))
open('a.2asm.asserts.mjs', 'w').write(out)