[Python-checkins] cpython: Issue #21907: Try to make the pre-Vista Windows buildbots happier.

zach.ware python-checkins at python.org
Sat Oct 11 08:44:55 CEST 2014


https://hg.python.org/cpython/rev/f592a4073672
changeset:   92948:f592a4073672
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Sat Oct 11 01:43:35 2014 -0500
summary:
  Issue #21907: Try to make the pre-Vista Windows buildbots happier.

Initial patch by David Bolen.

files:
  Tools/buildbot/test.bat |  10 ++++++++++
  1 files changed, 10 insertions(+), 0 deletions(-)


diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat
--- a/Tools/buildbot/test.bat
+++ b/Tools/buildbot/test.bat
@@ -3,4 +3,14 @@
 rem The following line should be removed before #20035 is closed
 set TCL_LIBRARY=%~dp0..\..\..\tcltk\lib\tcl8.6
 
+ver | findstr "Version 6." >nul
+if %ERRORLEVEL% == 1 goto xp
+
 "%~dp0..\..\PCbuild\python_d.exe" "%~dp0..\scripts\run_tests.py" -j 1 -u all -W --timeout=3600 %*
+goto done
+
+:xp
+cd PCbuild
+call rt.bat -d -q -uall -rwW -n --timeout=3600 %1 %2 %3 %4 %5 %6 %7 %8 %9
+
+:done

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


More information about the Python-checkins mailing list