summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-06-29 11:50:36 -0700
committerAlon Zakai <alonzakai@gmail.com>2016-06-29 11:50:36 -0700
commitb3cd0621ff58d6a6e02c77ab29caa6efec097988 (patch)
tree265c27c20aa857d71daa450510613e16264ea88e /check.py
parentb182295345c10f6e19226fc6bee19ff7e7194f4d (diff)
downloadbinaryen-b3cd0621ff58d6a6e02c77ab29caa6efec097988.tar.gz
binaryen-b3cd0621ff58d6a6e02c77ab29caa6efec097988.tar.bz2
binaryen-b3cd0621ff58d6a6e02c77ab29caa6efec097988.zip
don't do asmjs tests on all wasm.js tests, the one hello world is enough
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 9dca8825c..214ade67b 100755
--- a/check.py
+++ b/check.py
@@ -784,7 +784,7 @@ if has_emcc:
extra = json.loads(open(emcc).read())
if os.path.exists('a.normal.js'): os.unlink('a.normal.js')
for opts in [[], ['-O1'], ['-O2'], ['-O3'], ['-Oz']]:
- for method in ['interpret-asm2wasm', 'interpret-s-expr', 'asmjs', 'interpret-binary']:
+ for method in ['interpret-asm2wasm', 'interpret-s-expr', 'interpret-binary']:
command = ['emcc', '-o', 'a.wasm.js', '-s', 'BINARYEN=1', os.path.join('test', c)] + opts + extra
command += ['-s', 'BINARYEN_METHOD="' + method + '"']
print '....' + ' '.join(command)