diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-08 10:46:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-08 10:46:52 -0800 |
commit | 2c8edcc0fa082a21e90ac18d39c11855cbe042ac (patch) | |
tree | a3943b21a25f1f823be7cb8f63f7459d5e90d6c0 /check.py | |
parent | 4d8022da3af7d2604e7779e43f721ade1f04b89e (diff) | |
download | binaryen-2c8edcc0fa082a21e90ac18d39c11855cbe042ac.tar.gz binaryen-2c8edcc0fa082a21e90ac18d39c11855cbe042ac.tar.bz2 binaryen-2c8edcc0fa082a21e90ac18d39c11855cbe042ac.zip |
fix 64-bit switch
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ 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', 'traps']] + 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']] else: spec_tests = requested[:] |