[pypy-svn] r77362 - pypy/branch/fast-forward/lib-python

benjamin at codespeak.net benjamin at codespeak.net
Sat Sep 25 02:51:04 CEST 2010


Author: benjamin
Date: Sat Sep 25 02:51:03 2010
New Revision: 77362

Modified:
   pypy/branch/fast-forward/lib-python/conftest.py
Log:
fix arg order

Modified: pypy/branch/fast-forward/lib-python/conftest.py
==============================================================================
--- pypy/branch/fast-forward/lib-python/conftest.py	(original)
+++ pypy/branch/fast-forward/lib-python/conftest.py	Sat Sep 25 02:51:03 2010
@@ -643,7 +643,7 @@
             pypy_options.extend(
                 ['--withmod-%s' % mod for mod in regrtest.usemodules])
             sopt = " ".join(pypy_options) 
-            cmd = "%s %s %d %s -S %s %s -v %s" %(
+            cmd = "%s %s %d %s -S %s %s %s -v" %(
                 python, alarm_script, TIMEOUT, 
                 pypy_script, sopt, 
                 regrrun, fspath.purebasename)



More information about the Pypy-commit mailing list