[pypy-svn] r70628 - pypy/benchmarks

fijal at codespeak.net fijal at codespeak.net
Fri Jan 15 21:11:33 CET 2010


Author: fijal
Date: Fri Jan 15 21:11:30 2010
New Revision: 70628

Modified:
   pypy/benchmarks/runner.py
Log:
inherit PATH from the parent env


Modified: pypy/benchmarks/runner.py
==============================================================================
--- pypy/benchmarks/runner.py	(original)
+++ pypy/benchmarks/runner.py	Fri Jan 15 21:11:30 2010
@@ -9,6 +9,7 @@
 
 def run_and_store(benchmarks, result_filename, pypy_c_path):
     results = main(['-f', '-b', ','.join(benchmarks),
+                    '--inherit_env=PATH',
                     '--no_charts', sys.executable, pypy_c_path])
     f = open(str(result_filename), "w")
     f.write(json.dumps([(name, result.__class__.__name__, result.__dict__)



More information about the Pypy-commit mailing list