diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-06 11:16:43 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-06 11:16:43 -0800 |
commit | 99d106aa4f8528e3ac537ecdc5d1cc8879c2f522 (patch) | |
tree | 14362eb9dbf6c213cc26f7707b345491069d4d9d /check.py | |
parent | 57f090cb36ac54f8077444af0be7b7605f7e4a17 (diff) | |
download | binaryen-99d106aa4f8528e3ac537ecdc5d1cc8879c2f522.tar.gz binaryen-99d106aa4f8528e3ac537ecdc5d1cc8879c2f522.tar.bz2 binaryen-99d106aa4f8528e3ac537ecdc5d1cc8879c2f522.zip |
memory fixes
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ if len(requested) == 0: # 'address' : filed issue, test looks invalid # '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', 'memory_redundancy', 'memory_trap', 'names']] + 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', 'memory_redundancy', 'memory_trap', 'names', 'resizing']] else: spec_tests = requested[:] |