diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-04 16:12:35 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-04 16:12:35 -0800 |
commit | 822857a28cec499a8ab2688f2784c961ae1d4c19 (patch) | |
tree | fa19b8c9d9f959ae83c07fbada019d9488e07970 /check.py | |
parent | 913dfe73a9fad60e8498160fcabb715cb966bc97 (diff) | |
download | binaryen-822857a28cec499a8ab2688f2784c961ae1d4c19.tar.gz binaryen-822857a28cec499a8ab2688f2784c961ae1d4c19.tar.bz2 binaryen-822857a28cec499a8ab2688f2784c961ae1d4c19.zip |
prepare to run assert tests
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ for t in tests: if t.endswith('.wast'): print '..', t t = os.path.join('test', t) - actual, err = subprocess.Popen([os.path.join('bin', 'wasm-shell'), t], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() + actual, err = subprocess.Popen([os.path.join('bin', 'wasm-shell'), t, 'print-wasm'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() assert err == '', 'bad err:' + err expected = open(t).read() |