summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-09 19:21:09 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-09 19:21:09 -0800
commitb6ea5a37e0ec47df1bafed35c629d46fe98d613f (patch)
treec4a97ec2d549e1931970514ba2d9798b80dbc469 /check.py
parentb8b815a6cc5f6d43222f623e63f9e665ff460085 (diff)
downloadbinaryen-b6ea5a37e0ec47df1bafed35c629d46fe98d613f.tar.gz
binaryen-b6ea5a37e0ec47df1bafed35c629d46fe98d613f.tar.bz2
binaryen-b6ea5a37e0ec47df1bafed35c629d46fe98d613f.zip
handle empty switches, and some more temp blacklisting
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 3138f08c2..2414c2915 100755
--- a/check.py
+++ b/check.py
@@ -80,7 +80,7 @@ for t in tests:
print '\n[ checking wasm-shell spec testcases... ]\n'
if len(requested) == 0:
- BLACKLIST = ['float_memory.wast', 'float_misc.wast']
+ BLACKLIST = ['float_memory.wast', 'float_misc.wast', 'unreachable.wast', 'select.wast']
spec_tests = [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec'))) if t not in BLACKLIST]
else:
spec_tests = requested[:]