[Python-checkins] python/dist/src/PCbuild rt.bat,1.11,1.12

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Tue Aug 31 00:13:24 CEST 2004


Update of /cvsroot/python/python/dist/src/PCbuild
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7133/PCbuild

Modified Files:
	rt.bat 
Log Message:
More cmd.exe exploitation.


Index: rt.bat
===================================================================
RCS file: /cvsroot/python/python/dist/src/PCbuild/rt.bat,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- rt.bat	30 Aug 2004 21:27:55 -0000	1.11
+++ rt.bat	30 Aug 2004 22:13:22 -0000	1.12
@@ -1,40 +1,52 @@
- at rem Run Tests.  Run the regression test suite.
- at rem Usage:  rt [-d] [-O] [-q] regrtest_args
- at rem -d   Run Debug build (python_d.exe).  Else release build.
- at rem -O   Run python.exe or python_d.exe (see -d) with -O.
- at rem -q   "quick" -- normally the tests are run twice, the first time
- at rem      after deleting all the .py[co] files reachable from Lib/.
- at rem      -q runs the tests just once, and without deleting .py[co] files.
- at rem All leading instances of these switches are shifted off, and
- at rem whatever remains is passed to regrtest.py.  For example,
- at rem     rt -O -d -x test_thread
- at rem runs
- at rem     python_d -O ../lib/test/regrtest.py -x test_thread
- at rem twice, and
- at rem     rt -q -g test_binascii
- at rem runs
- at rem     python_d ../lib/test/regrtest.py -g test_binascii
- at rem to generate the expected-output file for binascii quickly.
- at setlocal
- at set _exe=python
- at set _qmode=no
- at set _dashO=
- at PATH %PATH%;..\..\tcltk\bin
- at goto CheckOpts
-:Again
- at shift
+ at echo off
+rem Run Tests.  Run the regression test suite.
+rem Usage:  rt [-d] [-O] [-q] regrtest_args
+rem -d   Run Debug build (python_d.exe).  Else release build.
+rem -O   Run python.exe or python_d.exe (see -d) with -O.
+rem -q   "quick" -- normally the tests are run twice, the first time
+rem      after deleting all the .py[co] files reachable from Lib/.
+rem      -q runs the tests just once, and without deleting .py[co] files.
+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 twice, and
+rem     rt -q -g test_binascii
+rem runs
+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
+rem     -u network,largefile
+rem then you have to quote it on the rt line, like
+rem     rt -u "network,largefile"
+
+setlocal
+
+set exe=python
+set qmode=
+set dashO=
+PATH %PATH%;..\..\tcltk\bin
+
 :CheckOpts
- at if "%1"=="-O" set _dashO=-O
- at if "%1"=="-O" goto Again
- at if "%1"=="-q" set _qmode=yes
- at if "%1"=="-q" goto Again
- at if "%1"=="-d" set _exe=python_d
- at if "%1"=="-d" goto Again
- at if "%_qmode%"=="yes" goto Qmode
- at echo Deleting .pyc/.pyo files ...
-@%_exe% rmpyc.py
-%_exe% %_dashO% -E -tt ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
- at echo About to run again without deleting .pyc/.pyo first:
- at pause
+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
+if defined qmode goto Qmode
+
+echo Deleting .pyc/.pyo files ...
+%exe% rmpyc.py
+
+echo on
+%cmd%
+ at echo off
+
+echo About to run again without deleting .pyc/.pyo first:
+pause
+
 :Qmode
-%_exe% %_dashO% -E -tt ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
+echo on
+%cmd%



More information about the Python-checkins mailing list