projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3cd7604
)
Added simple batch file to make running the test suite from the PCbuild
author
Tim Peters
<tim.peters@gmail.com>
Fri, 15 Sep 2000 07:36:28 +0000
(07:36 +0000)
committer
Tim Peters
<tim.peters@gmail.com>
Fri, 15 Sep 2000 07:36:28 +0000
(07:36 +0000)
directory less tedious.
PCbuild/rt.bat
[new file with mode: 0755]
patch
|
blob
diff --git a/PCbuild/rt.bat
b/PCbuild/rt.bat
new file mode 100755
(executable)
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=