summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-05 21:44:37 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-05 21:44:37 -0800
commit52ef3cda1cd6f093f5260d685149fbbda9881bc3 (patch)
treec7dd9c0e3799b88edacf8d8733cbb19adc16818d
parentf85fca65799a61910d43a1099e7f33299df327ac (diff)
downloadbinaryen-52ef3cda1cd6f093f5260d685149fbbda9881bc3.tar.gz
binaryen-52ef3cda1cd6f093f5260d685149fbbda9881bc3.tar.bz2
binaryen-52ef3cda1cd6f093f5260d685149fbbda9881bc3.zip
add test
-rwxr-xr-xcheck.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/check.py b/check.py
index 9c2d68579..970a60923 100755
--- a/check.py
+++ b/check.py
@@ -82,8 +82,9 @@ 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
- # 'exports' : has a "return" https://github.com/WebAssembly/spec/issues/164
- spec_tests = [os.path.join('spec', t + '.wast') for t in ['conversions', 'endianness', 'f32_cmp', 'f32', 'f64_cmp', 'f64', 'float_exprs', 'forward', 'func_ptrs', 'functions', 'has_feature', 'i32', 'i64', 'imports', 'int_exprs']]
+ # 'exports', 'int_literals' : has a "return" https://github.com/WebAssembly/spec/issues/164
+ # 'switch': todo once stable
+ spec_tests = [os.path.join('spec', t + '.wast') for t in ['conversions', 'endianness', 'f32_cmp', 'f32', 'f64_cmp', 'f64', 'float_exprs', 'forward', 'func_ptrs', 'functions', 'has_feature', 'i32', 'i64', 'imports', 'int_exprs', 'left-to-right']]
else:
spec_tests = requested[:]