diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-10-11 06:43:35 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-10-11 06:43:35 (GMT) |
commit | 86a89f02e20ce141df9b3d473c704e31f608e802 (patch) | |
tree | a4f171f1071e377c544bbbf5d1b6e04b8856f1dc /Tools/buildbot | |
parent | 30270c8729357fd42db872a08a8e5dcc55e266af (diff) | |
download | cpython-86a89f02e20ce141df9b3d473c704e31f608e802.zip cpython-86a89f02e20ce141df9b3d473c704e31f608e802.tar.gz cpython-86a89f02e20ce141df9b3d473c704e31f608e802.tar.bz2 |
Issue #21907: Try to make the pre-Vista Windows buildbots happier.
Initial patch by David Bolen.
Diffstat (limited to 'Tools/buildbot')
-rw-r--r-- | Tools/buildbot/test.bat | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat index ec6eaff..3bbfd11 100644 --- 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 |