diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-15 07:36:28 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-15 07:36:28 (GMT) |
commit | a2ebb87bfe9cc106be456df643ad06ac0c6c07ba (patch) | |
tree | 413648677830543e9c8ce0a03658c6cf1f671adc /PCbuild/rt.bat | |
parent | 3cd760425f166edac753a6c3cfacbece17638490 (diff) | |
download | cpython-a2ebb87bfe9cc106be456df643ad06ac0c6c07ba.zip cpython-a2ebb87bfe9cc106be456df643ad06ac0c6c07ba.tar.gz cpython-a2ebb87bfe9cc106be456df643ad06ac0c6c07ba.tar.bz2 |
Added simple batch file to make running the test suite from the PCbuild
directory less tedious.
Diffstat (limited to 'PCbuild/rt.bat')
-rwxr-xr-x | PCbuild/rt.bat | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat new file mode 100755 index 0000000..142349b --- /dev/null +++ b/PCbuild/rt.bat @@ -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= |