summaryrefslogtreecommitdiffstats
path: root/Tools/pybench/Calls.py
diff options
context:
space:
mode:
authorSteve Holden <steve@holdenweb.com>2006-05-26 18:26:21 (GMT)
committerSteve Holden <steve@holdenweb.com>2006-05-26 18:26:21 (GMT)
commitd05e5468501ff572a55349a584a28d09f9d7abb3 (patch)
tree35ac0c190daef873dac46b960928354abdad7067 /Tools/pybench/Calls.py
parent9c0e9c089c758bc9b64f0379bc93f8ea6740eb53 (diff)
downloadcpython-d05e5468501ff572a55349a584a28d09f9d7abb3.zip
cpython-d05e5468501ff572a55349a584a28d09f9d7abb3.tar.gz
cpython-d05e5468501ff572a55349a584a28d09f9d7abb3.tar.bz2
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/Calls.py')
-rw-r--r--Tools/pybench/Calls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/pybench/Calls.py b/Tools/pybench/Calls.py
index a94887b..e295243 100644
--- a/Tools/pybench/Calls.py
+++ b/Tools/pybench/Calls.py
@@ -4,7 +4,7 @@ class PythonFunctionCalls(Test):
version = 0.3
operations = 5*(1+4+4+2)
- rounds = 600*22
+ rounds = 60000
def test(self):
@@ -113,7 +113,7 @@ class BuiltinFunctionCalls(Test):
version = 0.4
operations = 5*(2+5+5+5)
- rounds = 300*24
+ rounds = 30000
def test(self):
@@ -234,7 +234,7 @@ class PythonMethodCalls(Test):
version = 0.3
operations = 5*(6 + 5 + 4)
- rounds = 200*27
+ rounds = 20000
def test(self):
@@ -376,7 +376,7 @@ class Recursion(Test):
version = 0.3
operations = 5
- rounds = 500*21
+ rounds = 50000
def test(self):