diff options
author | Steve Holden <steve@holdenweb.com> | 2006-05-26 18:26:21 +0000 |
---|---|---|
committer | Steve Holden <steve@holdenweb.com> | 2006-05-26 18:26:21 +0000 |
commit | d05e5468501ff572a55349a584a28d09f9d7abb3 (patch) | |
tree | 35ac0c190daef873dac46b960928354abdad7067 /Tools/pybench/Numbers.py | |
parent | 9c0e9c089c758bc9b64f0379bc93f8ea6740eb53 (diff) | |
download | cpython-git-d05e5468501ff572a55349a584a28d09f9d7abb3.tar.gz |
Revert tests to MAL's original round sizes to retiain comparability
from long ago and far away. Stop calling this pybench 1.4 because it
isn't. Remove the empty test, which was a bad idea.
Diffstat (limited to 'Tools/pybench/Numbers.py')
-rw-r--r-- | Tools/pybench/Numbers.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/pybench/Numbers.py b/Tools/pybench/Numbers.py index e89d00f05a..a6aea3317a 100644 --- a/Tools/pybench/Numbers.py +++ b/Tools/pybench/Numbers.py @@ -4,7 +4,7 @@ class CompareIntegers(Test): version = 0.1 operations = 30 * 5 - rounds = 1200*21 + rounds = 120000 def test(self): @@ -200,7 +200,7 @@ class CompareFloats(Test): version = 0.1 operations = 30 * 5 - rounds = 600*27 + rounds = 60000 def test(self): @@ -396,7 +396,7 @@ class CompareFloatsIntegers(Test): version = 0.1 operations = 30 * 5 - rounds = 600*16 + rounds = 60000 def test(self): @@ -592,7 +592,7 @@ class CompareLongs(Test): version = 0.1 operations = 30 * 5 - rounds = 600*24 + rounds = 60000 def test(self): |