]> granicus.if.org Git - python/commitdiff
Issue #21907: Try to make the pre-Vista Windows buildbots happier.
authorZachary Ware <zachary.ware@gmail.com>
Sat, 11 Oct 2014 06:43:35 +0000 (01:43 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Sat, 11 Oct 2014 06:43:35 +0000 (01:43 -0500)
Initial patch by David Bolen.

Tools/buildbot/test.bat

index ec6eaff4f0648412cac79dc04ff82f7476e9ebc3..3bbfd119ed297003a14fb913791c0002a2b3a90f 100644 (file)
@@ -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