diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-05-05 19:36:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-05-05 19:36:09 (GMT) |
commit | 6a4f39416580b4e4f0f39aca31ad2f5ef149f603 (patch) | |
tree | ae891063ae32cadb85a38704227c5080bc94eb42 | |
parent | d8931c375a92787662b32a5e07583a0490d8fc34 (diff) | |
download | cpython-6a4f39416580b4e4f0f39aca31ad2f5ef149f603.zip cpython-6a4f39416580b4e4f0f39aca31ad2f5ef149f603.tar.gz cpython-6a4f39416580b4e4f0f39aca31ad2f5ef149f603.tar.bz2 |
#17883: Fix buildbot testing of Tkinter on Windows. Patch by Zachary Ware.
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | PCbuild/rt.bat | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -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. diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat index ee1661a..9da1ed1 100644 --- a/PCbuild/rt.bat +++ b/PCbuild/rt.bat @@ -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 |