summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2017-01-04 17:32:57 -0800
committerGitHub <noreply@github.com>2017-01-04 17:32:57 -0800
commite1371b9c6ae1ad9a7e758f43af4d56def1f331d3 (patch)
tree42824b701237150609ab9b60169ca993340feb3c /check.py
parenta47a3e7b4181f8cef2e7a7b371e52da71a859d2d (diff)
downloadbinaryen-e1371b9c6ae1ad9a7e758f43af4d56def1f331d3.tar.gz
binaryen-e1371b9c6ae1ad9a7e758f43af4d56def1f331d3.tar.bz2
binaryen-e1371b9c6ae1ad9a7e758f43af4d56def1f331d3.zip
Handle stacky code (#868)
* handle stacky code in binaries, using a block+local
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/check.py b/check.py
index c958c3f2b..ce2ae4f50 100755
--- a/check.py
+++ b/check.py
@@ -23,7 +23,7 @@ import sys
from scripts.test.support import run_command, split_wast
from scripts.test.shared import (
ASM2WASM, BIN_DIR, EMCC, MOZJS, NATIVECC, NATIVEXX, NODEJS, S2WASM_EXE,
- WASM_AS, WASM_OPT, WASM_SHELL, WASM_SHELL_EXE,
+ WASM_AS, WASM_OPT, WASM_SHELL, WASM_SHELL_EXE, WASM_DIS,
binary_format_check, delete_from_orbit, fail, fail_with_error,
fail_if_not_identical, fail_if_not_contained, has_vanilla_emcc,
has_vanilla_llvm, minify_check, num_failures, options, tests,
@@ -175,6 +175,20 @@ for t in tests:
minify_check(t)
+print '\n[ checking wasm-dis on provided binaries... ]\n'
+
+for t in tests:
+ if t.endswith('.wasm') and not t.startswith('spec'):
+ print '..', t
+ t = os.path.join(options.binaryen_test, t)
+ cmd = WASM_DIS + [t]
+ actual = run_command(cmd)
+
+ with open(t + '.fromBinary') as f:
+ expected = f.read()
+ if actual != expected:
+ fail(actual, expected)
+
print '\n[ checking wasm-shell spec testcases... ]\n'
if len(requested) == 0: