[Python-checkins] CVS: python/dist/src/PCbuild rt.bat,NONE,1.1

Tim Peters python-dev@python.org
Fri, 15 Sep 2000 00:36:31 -0700


Update of /cvsroot/python/python/dist/src/PCbuild
In directory slayer.i.sourceforge.net:/tmp/cvs-serv12050

Added Files:
	rt.bat 
Log Message:
Added simple batch file to make running the test suite from the PCbuild
directory less tedious.


--- NEW FILE ---
@rem Run Tests.  Run the regression test suite.
@rem Plain "rt" runs Release build, arguments passed on to regrtest.
@rem "rt -d" runs Debug build similarly, after shifting off -d.
@set _exe=python
@if "%1" =="-d" set _exe=python_d
@if "%1" =="-d" shift
%_exe% ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
@set _exe=