summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-06-07 19:23:49 -0700
committerGitHub <noreply@github.com>2018-06-07 19:23:49 -0700
commit7676221b837bbd20daf1889dbdabf3cb76721658 (patch)
tree32f5721cdcf90cf0e4316fc2ba131549c8a90f8e /check.py
parent3af404435b3cfa90704810370703f20921c055dd (diff)
downloadbinaryen-7676221b837bbd20daf1889dbdabf3cb76721658.tar.gz
binaryen-7676221b837bbd20daf1889dbdabf3cb76721658.tar.bz2
binaryen-7676221b837bbd20daf1889dbdabf3cb76721658.zip
wasm-opt source map support (#1557)
* support source map input in wasm-opt, refactoring the loading code into wasm-io * use wasm-io in wasm-as * support output source maps in wasm-opt * add a test for wasm-opt and source maps
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/check.py b/check.py
index f3f35524e..485015f13 100755
--- a/check.py
+++ b/check.py
@@ -165,6 +165,18 @@ def run_wasm_opt_tests():
minify_check(t)
+ print '\n[ checking wasm-opt debugInfo read-write... ]\n'
+
+ for t in os.listdir('test'):
+ if t.endswith('.fromasm') and 'debugInfo' in t:
+ print '..', t
+ t = os.path.join('test', t)
+ f = t + '.read-written'
+ run_command(WASM_AS + [t, '--source-map=a.map', '-o', 'a.wasm', '-g'])
+ run_command(WASM_OPT + ['a.wasm', '--input-source-map=a.map', '-o', 'b.wasm', '--output-source-map=b.map', '-g'])
+ actual = run_command(WASM_DIS + ['b.wasm', '--source-map=b.map'])
+ fail_if_not_identical_to_file(actual, f)
+
def run_wasm_dis_tests():
print '\n[ checking wasm-dis on provided binaries... ]\n'