]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#17883: Fix buildbot testing of Tkinter on Windows. Patch by Zachary Ware.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 5 May 2013 19:36:09 +0000 (22:36 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 5 May 2013 19:36:09 +0000 (22:36 +0300)
Misc/NEWS
PCbuild/rt.bat

index 0691ad33956672d440f9c9f79e633841cbdd1b62..1fe11be38a64fdfc07bfd51181d5e7543e0ba348 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,9 @@ Library
 Tests
 -----
 
+- Issue #17883: Fix buildbot testing of Tkinter on Windows.
+  Patch by Zachary Ware.
+
 - Issue #7855: Add tests for ctypes/winreg for issues found in IronPython.
   Initial patch by Dino Viehland.
 
index ee1661a21ab52a4dc2920fffd28377cf339713d5..9da1ed1b397079e74b993faf166d8d528170c389 100644 (file)
@@ -30,7 +30,7 @@ set prefix=.\
 set suffix=
 set qmode=
 set dashO=
-set tcltk=
+set tcltk=tcltk
 
 :CheckOpts
 if "%1"=="-O" (set dashO=-O)     & shift & goto CheckOpts
@@ -38,7 +38,7 @@ if "%1"=="-q" (set qmode=yes)    & shift & goto CheckOpts
 if "%1"=="-d" (set suffix=_d)    & shift & goto CheckOpts
 if "%1"=="-x64" (set prefix=amd64) & (set tcltk=tcltk64) & shift & goto CheckOpts
 
-PATH %PATH%;..\..\%tcltk%\bin
+PATH %PATH%;%~dp0..\..\%tcltk%\bin
 set exe=%prefix%\python%suffix%
 set cmd=%exe% %dashO% -Wd -3 -E -tt ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
 if defined qmode goto Qmode