diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-22 15:40:26 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-22 15:40:26 -0800 |
commit | 5fc4bde436bc51be040abb7375b61c5d106a6a44 (patch) | |
tree | 3382cca2f329f78502e94e5c3ff6b001f5242797 /check.py | |
parent | f5beae2835377e452c95c5b64a90a75b97b3234e (diff) | |
download | binaryen-5fc4bde436bc51be040abb7375b61c5d106a6a44.tar.gz binaryen-5fc4bde436bc51be040abb7375b61c5d106a6a44.tar.bz2 binaryen-5fc4bde436bc51be040abb7375b61c5d106a6a44.zip |
fix check.py
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ for t in tests: print '..', t t = os.path.join('test', t) actual, err = subprocess.Popen([os.path.join('bin', 'binaryen-shell'), t, '-print-before'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() - assert err == '', 'bad err:' + err + assert err.replace('printing before:', '').strip() == '', 'bad err:' + err actual = actual.replace('printing before:\n', '') expected = open(t).read() |