diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-13 17:25:51 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-13 17:25:51 -0700 |
commit | b3a279b0a50b42f50c992811a6d10999c4aee124 (patch) | |
tree | f1c9419511933c7867de84a8b0032ead509988fa | |
parent | 77f5ee985caf6db06c6fcd90ecc56eff54c432ed (diff) |
disable roundings in sqlite
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index d71cfbfd..815185f2 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -3097,7 +3097,7 @@ if 'benchmark' not in str(sys.argv): global CORRECT_SIGNS_LINES; CORRECT_SIGNS_LINES = auto_optimize_data['signs_lines'] # TODO: Fast unSign for 8-bit values! global CORRECT_OVERFLOWS; CORRECT_OVERFLOWS = 0 - global CORRECT_ROUNDINGS; CORRECT_ROUNDINGS = 1 + global CORRECT_ROUNDINGS; CORRECT_ROUNDINGS = 0 global SAFE_HEAP; SAFE_HEAP = 0 # uses time.h to set random bytes, other stuff global DISABLE_EXCEPTIONS; DISABLE_EXCEPTIONS = 1 |