diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-05 09:34:12 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-05 09:34:12 (GMT) |
commit | 68e3686253eae7b07fa9490789ff261cff7a54d5 (patch) | |
tree | 4f7b6d2dddb286952127da531f4a8d3599dd0cd6 /Tools/pybench | |
parent | dbb7b9da61450142e034c4da2eb9ca0f0bc13eb0 (diff) | |
download | cpython-68e3686253eae7b07fa9490789ff261cff7a54d5.zip cpython-68e3686253eae7b07fa9490789ff261cff7a54d5.tar.gz cpython-68e3686253eae7b07fa9490789ff261cff7a54d5.tar.bz2 |
Fixed quoting and paths in the sqlite project file
Diffstat (limited to 'Tools/pybench')
-rwxr-xr-x | Tools/pybench/pybench.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py index dd398f5..1a6c85b 100755 --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -301,6 +301,7 @@ class Test: if _debug: print('Calib. overhead time = %.6fms' % ( min_overhead * MILLI_SECONDS)) + return if min_overhead < 0.0: raise ValueError('calibration setup did not work') if max_overhead - min_overhead > 0.1: |