summaryrefslogtreecommitdiffstats
path: root/PC/VS7.1/rt.bat
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-31 14:59:26 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-31 14:59:26 (GMT)
commit656dc2adeeb3eded0c640002f86f2877c8c7e3fc (patch)
treee51d669ad3d07e028f713c23151f0f8085eae42b /PC/VS7.1/rt.bat
parent915d5d96d826c13cd6a89341fc1a2ce12811aea2 (diff)
downloadcpython-656dc2adeeb3eded0c640002f86f2877c8c7e3fc.zip
cpython-656dc2adeeb3eded0c640002f86f2877c8c7e3fc.tar.gz
cpython-656dc2adeeb3eded0c640002f86f2877c8c7e3fc.tar.bz2
Fix paths for build bot
Diffstat (limited to 'PC/VS7.1/rt.bat')
-rwxr-xr-xPC/VS7.1/rt.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/PC/VS7.1/rt.bat b/PC/VS7.1/rt.bat
index 8e386c5..29801d2 100755
--- a/PC/VS7.1/rt.bat
+++ b/PC/VS7.1/rt.bat
@@ -10,11 +10,11 @@ rem All leading instances of these switches are shifted off, and
rem whatever remains is passed to regrtest.py. For example,
rem rt -O -d -x test_thread
rem runs
-rem python_d -O ../lib/test/regrtest.py -x test_thread
+rem python_d -O ../../lib/test/regrtest.py -x test_thread
rem twice, and
rem rt -q -g test_binascii
rem runs
-rem python_d ../lib/test/regrtest.py -g test_binascii
+rem python_d ../../lib/test/regrtest.py -g test_binascii
rem to generate the expected-output file for binascii quickly.
rem
rem Confusing: if you want to pass a comma-separated list, like
@@ -27,14 +27,14 @@ setlocal
set exe=python
set qmode=
set dashO=
-PATH %PATH%;..\..\tcltk\bin
+PATH %PATH%;..\..\..\tcltk\bin
:CheckOpts
if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
if "%1"=="-d" (set exe=python_d) & shift & goto CheckOpts
-set cmd=%exe% %dashO% -E -tt ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
+set cmd=%exe% %dashO% -E -tt ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
if defined qmode goto Qmode
echo Deleting .pyc/.pyo files ...