diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-13 17:21:37 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-13 17:21:37 -0700 |
commit | 77f5ee985caf6db06c6fcd90ecc56eff54c432ed (patch) | |
tree | 7b62eb62e16894f2a0c5e180dd35dd13c22571d5 /tests/runner.py | |
parent | 9743324f3764836dd7d6ce570741b2968cfb4b5a (diff) |
optimize sqlite
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 761fe7f6..d71cfbfd 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -3093,8 +3093,9 @@ if 'benchmark' not in str(sys.argv): auto_optimize_data = read_auto_optimize_data(path_from_root('tests', 'sqlite', 'sqlite-autooptimize.fails.txt')) - global CORRECT_SIGNS; CORRECT_SIGNS = 1 - #global CORRECT_SIGNS_LINES; CORRECT_SIGNS_LINES = auto_optimize_data['signs_lines'] + global CORRECT_SIGNS; CORRECT_SIGNS = 2 + 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 SAFE_HEAP; SAFE_HEAP = 0 # uses time.h to set random bytes, other stuff |