summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-12-23 10:55:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-12-23 11:39:35 -0800
commit441f3a1d04a698bc9e71cbd29be085ca2a80b3c4 (patch)
tree4f8868eca90c486bc2b9637bcc102f7048e5b6a0
parent06952cee2becd83ab5a531b3e5649ad5f137d09f (diff)
downloadbinaryen-441f3a1d04a698bc9e71cbd29be085ca2a80b3c4.tar.gz
binaryen-441f3a1d04a698bc9e71cbd29be085ca2a80b3c4.tar.bz2
binaryen-441f3a1d04a698bc9e71cbd29be085ca2a80b3c4.zip
improve check.py
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 46af188bf..07ff9b072 100755
--- a/check.py
+++ b/check.py
@@ -273,7 +273,7 @@ if has_emcc:
command += ['-s', 'BINARYEN_METHOD="' + method + '"']
else:
method = 'wasm-s-parser' # this is the default
- print method, ' : ', command, ' => ', success
+ print method, ' : ', ' '.join(command), ' => ', success
subprocess.check_call(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
def break_cashew():
asm = open('a.wasm.asm.js').read()