Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a2ebb87

Browse files
committed
Added simple batch file to make running the test suite from the PCbuild
directory less tedious.
1 parent 3cd7604 commit a2ebb87

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

PCbuild/rt.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@rem Run Tests. Run the regression test suite.
2+
@rem Plain "rt" runs Release build, arguments passed on to regrtest.
3+
@rem "rt -d" runs Debug build similarly, after shifting off -d.
4+
@set _exe=python
5+
@if "%1" =="-d" set _exe=python_d
6+
@if "%1" =="-d" shift
7+
%_exe% ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
8+
@set _exe=

0 commit comments

Comments
 (0)