summaryrefslogtreecommitdiff
path: root/PCbuild/rt.bat
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-09-15 07:36:28 +0000
committerTim Peters <tim.peters@gmail.com>2000-09-15 07:36:28 +0000
commit6d78541e7d4ba6c4468c23ad30f99dab2e0f5305 (patch)
treee457203378abcd6f7f0bbc322f1a68a6553034ef /PCbuild/rt.bat
parent5062a9f595012da84b2700d554506874e98bbe95 (diff)
downloadcpython-6d78541e7d4ba6c4468c23ad30f99dab2e0f5305.tar.gz
Added simple batch file to make running the test suite from the PCbuild
directory less tedious.
Diffstat (limited to 'PCbuild/rt.bat')
-rwxr-xr-xPCbuild/rt.bat8
1 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat
new file mode 100755
index 0000000000..142349bed7
--- /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=