diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-08 10:57:54 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-08 10:57:54 -0800 |
commit | 8bbc4d10232a73bb8c61a315b224d0b93c4713c6 (patch) | |
tree | 541e897422424e7529d552448aef8dde5010d99c | |
parent | c4b4b9ae5d19dd12b9cc00719c57dfa5fd216853 (diff) | |
download | binaryen-8bbc4d10232a73bb8c61a315b224d0b93c4713c6.tar.gz binaryen-8bbc4d10232a73bb8c61a315b224d0b93c4713c6.tar.bz2 binaryen-8bbc4d10232a73bb8c61a315b224d0b93c4713c6.zip |
blacklist the remaining spec failures
-rwxr-xr-x | check.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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[:] |