diff options
author | Steve Holden <steve@holdenweb.com> | 2006-05-26 16:27:59 +0000 |
---|---|---|
committer | Steve Holden <steve@holdenweb.com> | 2006-05-26 16:27:59 +0000 |
commit | 431a76314df929d42192fe4bb087eb97d158de87 (patch) | |
tree | d4e329932cd3ae725727346214ad73eb35f069d1 /Tools/pybench/Exceptions.py | |
parent | 0cbf2c57852d64855b88305dfa7d77f84936a674 (diff) | |
download | cpython-git-431a76314df929d42192fe4bb087eb97d158de87.tar.gz |
Add -t option to allow easy test selection.
Action verbose option correctly.
Tweak operation counts. Add empty and new instances tests.
Enable comparisons across different warp factors. Change version.
Diffstat (limited to 'Tools/pybench/Exceptions.py')
-rw-r--r-- | Tools/pybench/Exceptions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/pybench/Exceptions.py b/Tools/pybench/Exceptions.py index 7e55708dfe..d6c8941911 100644 --- a/Tools/pybench/Exceptions.py +++ b/Tools/pybench/Exceptions.py @@ -4,7 +4,7 @@ class TryRaiseExcept(Test): version = 0.1 operations = 2 + 3 - rounds = 60000 + rounds = 600*25 def test(self): @@ -44,7 +44,7 @@ class TryExcept(Test): version = 0.1 operations = 15 * 10 - rounds = 200000 + rounds = 2000*16 def test(self): |