[Python-checkins] cpython (2.7): Allow passing extra testing options to the buildbot test scripts

antoine.pitrou python-checkins at python.org
Wed Jun 27 17:35:00 CEST 2012


http://hg.python.org/cpython/rev/727ff6e2d3a4
changeset:   77818:727ff6e2d3a4
branch:      2.7
parent:      77806:01d180987d90
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Wed Jun 27 17:27:21 2012 +0200
summary:
  Allow passing extra testing options to the buildbot test scripts

files:
  Tools/buildbot/test-amd64.bat |  2 +-
  Tools/buildbot/test.bat       |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Tools/buildbot/test-amd64.bat b/Tools/buildbot/test-amd64.bat
--- a/Tools/buildbot/test-amd64.bat
+++ b/Tools/buildbot/test-amd64.bat
@@ -1,3 +1,3 @@
 @rem Used by the buildbot "test" step.
 cd PCbuild
-call rt.bat -q -d -x64 -uall -rw
+call rt.bat -d -q -x64 -uall -rwW -n %1 %2 %3 %4 %5 %6 %7 %8 %9
diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat
--- a/Tools/buildbot/test.bat
+++ b/Tools/buildbot/test.bat
@@ -1,3 +1,3 @@
 @rem Used by the buildbot "test" step.
 cd PCbuild
-call rt.bat -d -q -uall -rwW
+call rt.bat -d -q -uall -rwW -n %1 %2 %3 %4 %5 %6 %7 %8 %9

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list