Lines Matching refs:rem
2 rem Run Tests. Run the regression test suite.
3 rem Usage: rt [-d] [-O] [-q] [-x64] regrtest_args
4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
6 rem -q "quick" -- normally the tests are run twice, the first time
7 rem after deleting all the .pyc files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .pyc files.
9 rem -x64 Run the 64-bit build of python (or python_d if -d was specified)
10 rem When omitted, uses %PREFIX% if set or the 32-bit build
11 rem All leading instances of these switches are shifted off, and
12 rem whatever remains (up to 9 arguments) is passed to regrtest.py.
13 rem For example,
14 rem rt -O -d -x test_thread
15 rem runs
16 rem python_d -O ../lib/test/regrtest.py -x test_thread
17 rem twice, and
18 rem rt -q -g test_binascii
19 rem runs
20 rem python_d ../lib/test/regrtest.py -g test_binascii
21 rem to generate the expected-output file for binascii quickly.
22 rem
23 rem Confusing: if you want to pass a comma-separated list, like
24 rem -u network,largefile
25 rem then you have to quote it on the rt line, like
26 rem rt -u "network,largefile"