diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-02-06 16:24:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 16:24:33 -0800 |
commit | 985bcba6239792ebcb3808f1066ca6ea20ac5688 (patch) | |
tree | 8fdd04577f6b40f6f4a8c7851fa5dab83c26e413 /auto_update_tests.py | |
parent | 04fc050edf3eeff85a77910a4d6821bff59fade2 (diff) | |
download | binaryen-985bcba6239792ebcb3808f1066ca6ea20ac5688.tar.gz binaryen-985bcba6239792ebcb3808f1066ca6ea20ac5688.tar.bz2 binaryen-985bcba6239792ebcb3808f1066ca6ea20ac5688.zip |
Improve handling of implicit traps (#898)
* add --ignore-implicit-traps option, and by default do not ignore them, to properly preserve semantics
* implicit traps can be reordered, but are side effects and should not be removed
* add testing for --ignore-implicit-traps
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 7a14f6521..b74d07ba9 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -13,7 +13,7 @@ for asm in sorted(os.listdir('test')): cmd = [os.path.join('bin', 'asm2wasm'), os.path.join('test', asm)] wasm = asm.replace('.asm.js', '.fromasm') if not precise: - cmd += ['--imprecise'] + cmd += ['--imprecise', '--ignore-implicit-traps'] wasm += '.imprecise' if not opts: wasm += '.no-opts' |