summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-11 11:28:48 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-11 11:28:48 -0800
commitbe42e377272dbdee8c592706bbce8753aa6539b6 (patch)
treeff953204ab55aa2b544557ca1edbeb216e25645f /check.py
parente21c014dfd50a2a0cd89b6988ccf74a48d12ad3f (diff)
downloadbinaryen-be42e377272dbdee8c592706bbce8753aa6539b6.tar.gz
binaryen-be42e377272dbdee8c592706bbce8753aa6539b6.tar.bz2
binaryen-be42e377272dbdee8c592706bbce8753aa6539b6.zip
more nan fixes
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 6e2257b6b..8b9960b95 100755
--- a/check.py
+++ b/check.py
@@ -80,7 +80,7 @@ for t in tests:
print '\n[ checking wasm-shell spec testcases... ]\n'
if len(requested) == 0:
- BLACKLIST = ['nan-propagation.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[:]