diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-08 15:38:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-08 15:38:52 -0800 |
commit | be1bbc6bb827a13a450262a9ab872816ba94cefb (patch) | |
tree | 5657467ed0d75f130efcc16204a1eb23b0fd658b | |
parent | 3d161f19c82bc6eb2e2788f8a0446a0cf839e4a7 (diff) | |
download | binaryen-be1bbc6bb827a13a450262a9ab872816ba94cefb.tar.gz binaryen-be1bbc6bb827a13a450262a9ab872816ba94cefb.tar.bz2 binaryen-be1bbc6bb827a13a450262a9ab872816ba94cefb.zip |
remove blacklist entirely
-rwxr-xr-x | check.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -80,8 +80,7 @@ for t in tests: print '\n[ checking wasm-shell spec testcases... ]\n' if len(requested) == 0: - BLACKLIST = [] - spec_tests = [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec'))) if t not in BLACKLIST] + spec_tests = [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec')))] else: spec_tests = requested[:] |