[pypy-svn] r58371 - pypy/build/testrunner

pedronis at codespeak.net pedronis at codespeak.net
Tue Sep 23 12:08:52 CEST 2008


Author: pedronis
Date: Tue Sep 23 12:08:51 2008
New Revision: 58371

Modified:
   pypy/build/testrunner/runner.py
Log:
(iko, pedronis)

apply expanduser to the config file names for convenience



Modified: pypy/build/testrunner/runner.py
==============================================================================
--- pypy/build/testrunner/runner.py	(original)
+++ pypy/build/testrunner/runner.py	Tue Sep 23 12:08:51 2008
@@ -213,6 +213,7 @@
     # in that code function overriding method should not take self
     # though a self and self.__class__ are available if needed
     for config_py_file in opts.config:
+        config_py_file = os.path.expanduser(config_py_file)
         if py.path.local(config_py_file).check(file=1):
             print >>out, "using config", config_py_file
             execfile(config_py_file, run_param.__dict__)



More information about the Pypy-commit mailing list