diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-03-22 05:36:25 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-03-22 05:36:25 (GMT) |
commit | 4bcf5a52aefdff9e6bb7729c0f72e936ef6705f3 (patch) | |
tree | 0e611aca052b11dee776b312d8d07e580c0543f9 /PCbuild/rt.bat | |
parent | 940e2074123f7d18236e2e8ee08044b400261c42 (diff) | |
download | cpython-4bcf5a52aefdff9e6bb7729c0f72e936ef6705f3.zip cpython-4bcf5a52aefdff9e6bb7729c0f72e936ef6705f3.tar.gz cpython-4bcf5a52aefdff9e6bb7729c0f72e936ef6705f3.tar.bz2 |
Issue #15968: Temporarily revert change to PCbuild/rt.bat
to prevent buildbot failures on test_idle. This change
should go back in once #20035 is fixed.
Diffstat (limited to 'PCbuild/rt.bat')
-rw-r--r-- | PCbuild/rt.bat | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat index 3db0fb9..7129e20 100644 --- a/PCbuild/rt.bat +++ b/PCbuild/rt.bat @@ -30,13 +30,15 @@ set prefix=.\ set suffix= set qmode= set dashO= +set tcltk=tcltk :CheckOpts if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts -if "%1"=="-x64" (set prefix=amd64) & shift & goto CheckOpts +if "%1"=="-x64" (set prefix=amd64) & (set tcltk=tcltk64) & shift & goto CheckOpts +PATH %PATH%;%~dp0..\..\%tcltk%\bin set exe=%prefix%\python%suffix% set cmd=%exe% %dashO% -Wd -E -bb ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9 if defined qmode goto Qmode |