summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-08 10:19:20 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-08 10:19:20 -0800
commit92ac805edc6ebe06e5ad850c8a03202bd1a7f397 (patch)
treee5de0747143cb108cb8a3ebe73c2c90719036a70 /check.py
parent01363d0daeb33c93a166ae00ed5e9791d7de8f9f (diff)
downloadbinaryen-92ac805edc6ebe06e5ad850c8a03202bd1a7f397.tar.gz
binaryen-92ac805edc6ebe06e5ad850c8a03202bd1a7f397.tar.bz2
binaryen-92ac805edc6ebe06e5ad850c8a03202bd1a7f397.zip
switch fixes
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/check.py b/check.py
index 4393a6d0a..7aa0ea87b 100755
--- a/check.py
+++ b/check.py
@@ -82,8 +82,8 @@ 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
- # 'labels', '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', 'left-to-right', 'memory', 'memory_redundancy', 'memory_trap', 'names', 'resizing', 'runaway-recursion', 'select', 'store_retval', 'traps']]
+ # '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', 'traps']]
else:
spec_tests = requested[:]