From d504e759a6d343d321128d1f98be683f80ccda87 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Sun, 22 Nov 2015 15:41:50 -0800 Subject: another check.py fix --- check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'check.py') diff --git a/check.py b/check.py index 6839b1189..235f64297 100755 --- a/check.py +++ b/check.py @@ -54,7 +54,7 @@ for asm in tests: # verify in wasm if interpreter: # remove imports, spec interpreter doesn't know what to do with them - subprocess.check_call([os.path.join('bin', 'binaryen-shell'), '-remove-imports', '-print-after', os.path.join('test', wasm)], stdout=open('temp.wast', 'w')) + subprocess.check_call([os.path.join('bin', 'binaryen-shell'), '-remove-imports', '-print-after', os.path.join('test', wasm)], stdout=open('temp.wast', 'w'), stderr=subprocess.PIPE) proc = subprocess.Popen([interpreter, 'temp.wast'], stderr=subprocess.PIPE) out, err = proc.communicate() if proc.returncode != 0: -- cgit v1.2.3