summaryrefslogtreecommitdiff
path: root/Examples/python/performance/harness.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/performance/harness.py')
-rw-r--r--Examples/python/performance/harness.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/Examples/python/performance/harness.py b/Examples/python/performance/harness.py
index 00f48e66a..c3d38b4fb 100644
--- a/Examples/python/performance/harness.py
+++ b/Examples/python/performance/harness.py
@@ -3,9 +3,10 @@ import time
import imp
from subprocess import *
-def run (proc) :
- try :
+def run(proc):
+
+ try:
mod = imp.find_module(sys.argv[1])
mod = imp.load_module(sys.argv[1], *mod)
@@ -14,15 +15,18 @@ def run (proc) :
t2 = time.clock()
print "%s took %f seconds" % (mod.__name__, t2 - t1)
- except IndexError :
- proc = Popen([sys.executable, 'runme.py', 'Simple_baseline'], stdout=PIPE)
+ except IndexError:
+ proc = Popen(
+ [sys.executable, 'runme.py', 'Simple_baseline'], stdout=PIPE)
(stdout, stderr) = proc.communicate()
print stdout
- proc = Popen([sys.executable, 'runme.py', 'Simple_optimized'], stdout=PIPE)
+ proc = Popen(
+ [sys.executable, 'runme.py', 'Simple_optimized'], stdout=PIPE)
(stdout, stderr) = proc.communicate()
print stdout
- proc = Popen([sys.executable, 'runme.py', 'Simple_builtin'], stdout=PIPE)
+ proc = Popen(
+ [sys.executable, 'runme.py', 'Simple_builtin'], stdout=PIPE)
(stdout, stderr) = proc.communicate()
print stdout