diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-12 12:13:38 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-12 12:13:38 -0500 |
commit | 5b97dfbf7cd4ecffbde111020f992b2c7a9bd03a (patch) | |
tree | 2cbd757c809bb113562573fd62967541a9414517 /auto_update_tests.py | |
parent | b330c295d6ca2b2787bf99f0e036b3a46f9e4448 (diff) | |
download | binaryen-5b97dfbf7cd4ecffbde111020f992b2c7a9bd03a.tar.gz binaryen-5b97dfbf7cd4ecffbde111020f992b2c7a9bd03a.tar.bz2 binaryen-5b97dfbf7cd4ecffbde111020f992b2c7a9bd03a.zip |
fix s2wasm load
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index c6bcb7b98..7eee1e993 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -32,7 +32,7 @@ for t in sorted(os.listdir('test')): open(t, 'w').write(actual) -for s in ['minimal.s', 'basics.s', 'call.s', 'cfg-stackify.s', 'comparisons_f32.s', 'comparisons_f64.s', 'comparisons_i32.s', 'comparisons_i64.s', 'conv.s', 'cpus.s', 'dead-vreg.s']: +for s in ['minimal.s', 'basics.s', 'call.s', 'conv.s', 'fast-isel.s', 'i64.s', 'load.s', 'phi.s', 'select.s', 'unreachable.s', 'cfg-stackify.s', 'cpus.s', 'frem.s', 'immediates.s', 'load-store-i1.s', 'reg-stackify.s', 'unused-argument.s', 'comparisons_f32.s', 'dead-vreg.s', 'func.s', 'import.s', 'memory-addr32.s', 'store-results.s', 'varargs.s', 'comparisons_f64.s', 'exit.s', 'global.s', 'memory-addr64.s', 'returned.s', 'store.s', 'comparisons_i32.s', 'f32.s', 'globl.s', 'legalize.s', 'offset-folding.s', 'return-int32.s', 'store-trunc.s', 'comparisons_i64.s', 'f64.s', 'i32.s', 'load-ext.s', 'permute.s', 'return-void.s', 'switch.s']: # TODO: 'signext-zeroext.s', 'relocation.s', 'inline-asm.s' print '..', s wasm = s.replace('.s', '.wast') full = os.path.join('test', 'dot_s', s) |