diff options
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' |