[Python-checkins] cpython (2.7): #17883: Fix buildbot testing of Tkinter on Windows. Patch by Zachary Ware.

ezio.melotti python-checkins at python.org
Sun May 5 21:36:19 CEST 2013


http://hg.python.org/cpython/rev/3c58fa7dc7f1
changeset:   83627:3c58fa7dc7f1
branch:      2.7
parent:      83614:0201d8fa8bd0
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sun May 05 22:36:09 2013 +0300
summary:
  #17883: Fix buildbot testing of Tkinter on Windows.  Patch by Zachary Ware.

files:
  Misc/NEWS      |  3 +++
  PCbuild/rt.bat |  4 ++--
  2 files changed, 5 insertions(+), 2 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,9 @@
 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.
 
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat
--- a/PCbuild/rt.bat
+++ b/PCbuild/rt.bat
@@ -30,7 +30,7 @@
 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"=="-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

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


More information about the Python-checkins mailing list