diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-09 19:19:19 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-09 19:19:19 -0800 |
commit | b8b815a6cc5f6d43222f623e63f9e665ff460085 (patch) | |
tree | c969ec13bf05ac1ddd7287b3383a6b87c81d63f9 /check.py | |
parent | 9c6476efe9403658bb69851bfa3aa30f67a32868 (diff) | |
download | binaryen-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-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_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[:] |