mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
Added simple batch file to make running the test suite from the PCbuild
directory less tedious.
This commit is contained in:
parent
3cd760425f
commit
a2ebb87bfe
1 changed files with 8 additions and 0 deletions
8
PCbuild/rt.bat
Executable file
8
PCbuild/rt.bat
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
@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=
|
||||
Loading…
Add table
Add a link
Reference in a new issue