diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-01-22 10:48:55 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-01-22 10:48:55 -0800 |
commit | bb72adc023a0c1484ed0a12deffeec189f199db7 (patch) | |
tree | 0a57ee817e1e22aca65c702938156315673124ca /auto_update_tests.py | |
parent | 0d512c9013aa8410a05bf1b3b4bb203dd1d526cc (diff) | |
download | binaryen-bb72adc023a0c1484ed0a12deffeec189f199db7.tar.gz binaryen-bb72adc023a0c1484ed0a12deffeec189f199db7.tar.bz2 binaryen-bb72adc023a0c1484ed0a12deffeec189f199db7.zip |
add I32ReinterpretF32 in binary format, for now
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 4fbe7f8ce..273f05cb6 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -12,7 +12,7 @@ for asm in sorted(os.listdir('test')): open(os.path.join('test', wasm), 'w').write(actual) for wasm in sorted(os.listdir('test')): - if wasm.endswith('.wast'): + if wasm.endswith('.wast') and os.path.basename(wasm) not in ['kitchen_sink.wast']: # i64s in kitchen_sink print '..', wasm asm = wasm.replace('.wast', '.2asm.js') actual, err = subprocess.Popen([os.path.join('bin', 'wasm2asm'), os.path.join('test', wasm)], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() |