diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-26 14:44:16 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-26 14:51:29 -0700 |
commit | 9987b9a039052cb84f33127e5b2c3df58f349d7c (patch) | |
tree | 35b8fafd420fbe84a6ffc5e1e1aef11263238f57 /tests/runner.py | |
parent | b5cff5e14f352b7deadd0f674b5fe987650bcf39 (diff) |
flatten if-chains into smaller chains, chunking reduces the overhead of flattening them out entirely
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py index 15f0070a..fc41c8a1 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11091,11 +11091,11 @@ f.close() self.get_library('zlib', os.path.join('libz.a'), make_args=['libz.a']), open(path_from_root('tests', 'zlib', 'ref.txt'), 'r').read(), { - 100: (190, 210), + 100: (190, 250), 250: (300, 330), 500: (250, 310), - 1000: (330, 400), - 2000: (450, 500), + 1000: (230, 300), + 2000: (380, 450), 5000: (800, 1100), 0: (1500, 1800) }, |