diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-23 08:59:07 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-23 08:59:07 -0800 |
commit | 02a0c9fd58ba9c3e7209d1137d2d15a70397d4fc (patch) | |
tree | c1fc6b5568b0b3ca39c55acf7f49a150e405b606 | |
parent | 350d449a9980227ff30d5ed5d345d347d66f68f4 (diff) |
update i32 mul tests
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 71345743..0822fa27 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -1139,7 +1139,6 @@ m_divisor is 1091269979 def test_i32_mul_precise(self): if self.emcc_args == None: return self.skip('needs ta2') - self.emcc_args += ['-s', 'PRECISE_I32_MUL=1'] src = r''' #include <stdio.h> @@ -1154,7 +1153,7 @@ m_divisor is 1091269979 self.do_run(src, '3217489085') def test_i32_mul_semiprecise(self): - Settings.USE_MATH_IMUL = 0 # we want semiprecise here + Settings.PRECISE_I32_MUL = 0 # we want semiprecise here src = r''' #include <stdio.h> |