Lines Matching refs:set
11 rem was specified). If omitted, uses %PREFIX% if set or 64-bit.
31 set pcbuild=%~dp0
32 set suffix=
33 set qmode=
34 set dashO=
35 set regrtestargs=
36 set exe=
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
47 if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts
49 if not defined prefix set prefix=%pcbuild%amd64
50 set exe=%prefix%\python%suffix%.exe
51 set cmd="%exe%" %dashO% -u -Wd -E -bb -m test %regrtestargs%
69 if /I %1 EQU Win32 (set prefix=%pcbuild%win32) & exit /B 0
70 if /I %1 EQU x64 (set prefix=%pcbuild%amd64) & exit /B 0
71 if /I %1 EQU ARM64 (set prefix=%pcbuild%arm64) & exit /B 0
72 if /I %1 EQU ARM (set prefix=%pcbuild%arm32) & exit /B 0