Lines Matching +full:build +full:- +full:and +full:- +full:test +full:- +full:amd64
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
8 rem -q runs the tests just once, and without deleting .pyc files.
9 rem -p <Win32|x64|ARM|ARM64> or -win32, -x64, -arm32, -arm64
10 rem Run the specified architecture of python (or python_d if -d
11 rem was specified). If omitted, uses %PREFIX% if set or 64-bit.
12 rem All leading instances of these switches are shifted off, and
15 rem rt -O -d -x test_thread
17 rem python_d -O ../lib/test/regrtest.py -x test_thread
18 rem twice, and
19 rem rt -q -g test_binascii
21 rem python_d ../lib/test/regrtest.py -g test_binascii
22 rem to generate the expected-output file for binascii quickly.
24 rem Confusing: if you want to pass a comma-separated list, like
25 rem -u network,largefile
27 rem rt -u "network,largefile"
39 if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
40 if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
41 if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts
42 if "%1"=="-win32" (set prefix=%pcbuild%win32) & shift & goto CheckOpts
43 if "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts
44 if "%1"=="-arm64" (set prefix=%pcbuild%arm64) & shift & goto CheckOpts
45 if "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOpts
46 if "%1"=="-p" (call :SetPlatform %~2) & shift & shift & goto CheckOpts
49 if not defined prefix set prefix=%pcbuild%amd64
51 set cmd="%exe%" %dashO% -u -Wd -E -bb -m test %regrtestargs%
70 if /I %1 EQU x64 (set prefix=%pcbuild%amd64) & exit /B 0