summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-08 10:54:46 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-08 10:54:46 -0800
commitc4b4b9ae5d19dd12b9cc00719c57dfa5fd216853 (patch)
tree36432adb6742fed03e60ec1525bb61af7cd03c64
parent887c03898b4a8e59cecb0d8f9dc37d2b7e494ee8 (diff)
downloadbinaryen-c4b4b9ae5d19dd12b9cc00719c57dfa5fd216853.tar.gz
binaryen-c4b4b9ae5d19dd12b9cc00719c57dfa5fd216853.tar.bz2
binaryen-c4b4b9ae5d19dd12b9cc00719c57dfa5fd216853.zip
check all spec testcases
-rwxr-xr-xcheck.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/check.py b/check.py
index 59395e91d..696a15615 100755
--- a/check.py
+++ b/check.py
@@ -80,10 +80,7 @@ for t in tests:
print '\n[ checking wasm-shell spec testcases... ]\n'
if len(requested) == 0:
- #spec_tests = [] # XXX [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec')))]
- # 'address' : filed issue, test looks invalid
- # 'switch': todo once switch is stable
- spec_tests = [os.path.join('spec', t + '.wast') for t in ['conversions', 'endianness', 'exports', 'f32_cmp', 'f32', 'f64_cmp', 'f64', 'fac', 'float_exprs', 'forward', 'func_ptrs', 'functions', 'has_feature', 'i32', 'i64', 'imports', 'int_exprs', 'int_literals', 'labels', 'left-to-right', 'memory', 'memory_redundancy', 'memory_trap', 'names', 'resizing', 'runaway-recursion', 'select', 'store_retval', 'switch', 'traps']]
+ spec_tests = [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec')))]
else:
spec_tests = requested[:]