summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-09 19:19:19 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-09 19:19:19 -0800
commitb8b815a6cc5f6d43222f623e63f9e665ff460085 (patch)
treec969ec13bf05ac1ddd7287b3383a6b87c81d63f9 /check.py
parent9c6476efe9403658bb69851bfa3aa30f67a32868 (diff)
downloadbinaryen-b8b815a6cc5f6d43222f623e63f9e665ff460085.tar.gz
binaryen-b8b815a6cc5f6d43222f623e63f9e665ff460085.tar.bz2
binaryen-b8b815a6cc5f6d43222f623e63f9e665ff460085.zip
update control flow operators, blacklist some new float errors for now
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/check.py b/check.py
index abd47cb56..3138f08c2 100755
--- a/check.py
+++ b/check.py
@@ -80,7 +80,8 @@ for t in tests:
print '\n[ checking wasm-shell spec testcases... ]\n'
if len(requested) == 0:
- spec_tests = [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec')))]
+ BLACKLIST = ['float_memory.wast', 'float_misc.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[:]