diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-04 11:46:19 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-04 11:46:19 -0800 |
commit | 4bde5052f0183a33cbaa454e1a4d01785c0d257b (patch) | |
tree | 9056de7846a197669da39bbcb9f867d8dc94d9ba /check.py | |
parent | 00e3875bb7feda59faf347b6887fcdb143d7e50b (diff) | |
parent | e82c6e77e2fa2a2443fd3cc4ef4f4c9c0ba0ca62 (diff) | |
download | binaryen-4bde5052f0183a33cbaa454e1a4d01785c0d257b.tar.gz binaryen-4bde5052f0183a33cbaa454e1a4d01785c0d257b.tar.bz2 binaryen-4bde5052f0183a33cbaa454e1a4d01785c0d257b.zip |
Merge pull request #222 from WebAssembly/memory-merging-fix
Memory merging fix
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -598,11 +598,11 @@ if has_emcc: proc = subprocess.Popen([has_node, 'a.wasm.js'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = proc.communicate() if success: - assert proc.returncode == 0 - assert 'hello, world!' in out + assert proc.returncode == 0, err + assert 'hello, world!' in out, out else: - assert proc.returncode != 0 - assert 'hello, world!' not in out + assert proc.returncode != 0, err + assert 'hello, world!' not in out, out print '\n[ checking wasm.js testcases... ]\n' |