diff options
author | Derek Schuff <dschuff@chromium.org> | 2016-03-09 13:05:41 -0800 |
---|---|---|
committer | Derek Schuff <dschuff@chromium.org> | 2016-03-09 13:05:41 -0800 |
commit | 0c0850ed5e2a2e82ad42f803894defcc53692ccd (patch) | |
tree | c7225399210801476deaf21f093a865fbf5b54ef /check.py | |
parent | 1b45938aadd6e03e9210d88436be9c393623fb42 (diff) | |
download | binaryen-0c0850ed5e2a2e82ad42f803894defcc53692ccd.tar.gz binaryen-0c0850ed5e2a2e82ad42f803894defcc53692ccd.tar.bz2 binaryen-0c0850ed5e2a2e82ad42f803894defcc53692ccd.zip |
Implement rotates
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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[:] |