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/Constructs.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/Constructs.py')
-rw-r--r-- | Tools/pybench/Constructs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/pybench/Constructs.py b/Tools/pybench/Constructs.py index f7ebe73d84..00045bd73e 100644 --- a/Tools/pybench/Constructs.py +++ b/Tools/pybench/Constructs.py @@ -4,7 +4,7 @@ class IfThenElse(Test): version = 0.31 operations = 30*3 # hard to say... - rounds = 1500*27 + rounds = 150000 def test(self): @@ -471,7 +471,7 @@ class NestedForLoops(Test): version = 0.3 operations = 1000*10*5 - rounds = 100 + rounds = 150 def test(self): @@ -496,7 +496,7 @@ class ForLoops(Test): version = 0.1 operations = 5 * 5 - rounds = 80*25 + rounds = 8000 def test(self): |