summaryrefslogtreecommitdiffstats
path: root/Tools/pybench
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/pybench')
-rwxr-xr-xTools/pybench/pybench.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py
index 370175a..392ff50 100755
--- a/Tools/pybench/pybench.py
+++ b/Tools/pybench/pybench.py
@@ -885,7 +885,7 @@ python pybench.py -s p25.pybench -c p21.pybench
else:
bench.print_benchmark(hidenoise=hidenoise,
limitnames=limitnames)
- except IOError:
+ except IOError, reason:
print '* Error opening/reading file %s: %s' % (
repr(show_bench),
reason)
@@ -931,8 +931,13 @@ python pybench.py -s p25.pybench -c p21.pybench
bench.name = reportfile
pickle.dump(bench,f)
f.close()
- except IOError:
+ except IOError, reason:
print '* Error opening/writing reportfile'
+ except IOError, reason:
+ print '* Error opening/writing reportfile %s: %s' % (
+ reportfile,
+ reason)
+ print
if __name__ == '__main__':
PyBenchCmdline()