summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-08 10:57:54 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-08 10:57:54 -0800
commit8bbc4d10232a73bb8c61a315b224d0b93c4713c6 (patch)
tree541e897422424e7529d552448aef8dde5010d99c
parentc4b4b9ae5d19dd12b9cc00719c57dfa5fd216853 (diff)
downloadbinaryen-8bbc4d10232a73bb8c61a315b224d0b93c4713c6.tar.gz
binaryen-8bbc4d10232a73bb8c61a315b224d0b93c4713c6.tar.bz2
binaryen-8bbc4d10232a73bb8c61a315b224d0b93c4713c6.zip
blacklist the remaining spec failures
-rwxr-xr-xcheck.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/check.py b/check.py
index 696a15615..07fcdd2c6 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_literals.wast', '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[:]