diff options
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -277,8 +277,8 @@ if torture: out=s2wasm_torture_out) assert os.path.isdir(s2wasm_torture_out), 'Expected output directory %s' % s2wasm_torture_out for wast in sorted(os.listdir(s2wasm_torture_out)): - cmd = [os.path.join('bin', 'binaryen-shell'), os.path.join(s2wasm_torture_out, wast)] - print cmd + cmd = [os.path.join('bin', 'binaryen-shell'), os.path.join(s2wasm_torture_out, wast)] #, '--entry=main'] + print ' '.join(cmd) subprocess.check_call(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) shutil.rmtree(s2wasm_torture_out) if unexpected_result_count: |