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/Unicode.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/Unicode.py')
-rw-r--r-- | Tools/pybench/Unicode.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Tools/pybench/Unicode.py b/Tools/pybench/Unicode.py index 86839b5c69..366f171bd9 100644 --- a/Tools/pybench/Unicode.py +++ b/Tools/pybench/Unicode.py @@ -10,7 +10,7 @@ class ConcatUnicode(Test): version = 0.1 operations = 10 * 5 - rounds = 600*7 + rounds = 60000 def test(self): @@ -92,7 +92,7 @@ class CompareUnicode(Test): version = 0.1 operations = 10 * 5 - rounds = 1500*17 + rounds = 150000 def test(self): @@ -174,7 +174,7 @@ class CreateUnicodeWithConcat(Test): version = 0.1 operations = 10 * 5 - rounds = 800*12 + rounds = 80000 def test(self): @@ -249,7 +249,7 @@ class UnicodeSlicing(Test): version = 0.1 operations = 5 * 7 - rounds = 10000 + rounds = 100000 def test(self): @@ -310,7 +310,7 @@ class UnicodeMappings(Test): version = 0.1 operations = 3 * (5 + 4 + 2 + 1) - rounds = 100*15 + rounds = 10000 def test(self): @@ -383,7 +383,7 @@ class UnicodePredicates(Test): version = 0.1 operations = 5 * 9 - rounds = 1000*25 + rounds = 100000 def test(self): @@ -460,7 +460,7 @@ else: version = 0.1 operations = 5 * 8 - rounds = 1000*15 + rounds = 100000 def test(self): |