summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2016-03-09 13:05:41 -0800
committerDerek Schuff <dschuff@chromium.org>2016-03-09 13:05:41 -0800
commit0c0850ed5e2a2e82ad42f803894defcc53692ccd (patch)
treec7225399210801476deaf21f093a865fbf5b54ef /check.py
parent1b45938aadd6e03e9210d88436be9c393623fb42 (diff)
downloadbinaryen-0c0850ed5e2a2e82ad42f803894defcc53692ccd.tar.gz
binaryen-0c0850ed5e2a2e82ad42f803894defcc53692ccd.tar.bz2
binaryen-0c0850ed5e2a2e82ad42f803894defcc53692ccd.zip
Implement rotates
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 926282eab..272e1394c 100755
--- a/check.py
+++ b/check.py
@@ -354,7 +354,7 @@ for t in tests:
print '\n[ checking binaryen-shell spec testcases... ]\n'
if len(requested) == 0:
- BLACKLIST = ['i32.wast', 'i64.wast']
+ BLACKLIST = []
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[:]