Lines Matching +full:- +full:uall
14 if "%1" EQU "-h" goto Help
15 if "%1" EQU "-x86" (set TESTX86=1) && shift && goto CheckOpts
16 if "%1" EQU "-x64" (set TESTX64=1) && shift && goto CheckOpts
17 if "%1" EQU "-t" (set TARGETDIR=%~2) && shift && shift && goto CheckOpts
18 if "%1" EQU "--target" (set TARGETDIR=%~2) && shift && shift && goto CheckOpts
19 if "%1" EQU "-a" (set TESTALLUSER=1) && shift && goto CheckOpts
20 if "%1" EQU "--alluser" (set TESTALLUSER=1) && shift && goto CheckOpts
21 if "%1" EQU "-p" (set TESTPERUSER=1) && shift && goto CheckOpts
22 if "%1" EQU "--peruser" (set TESTPERUSER=1) && shift && goto CheckOpts
29 for %%f in ("%PCBUILD%win32\en-us\*.exe") do (
30 …if defined TESTALLUSER call :test "%%~ff" "%TARGETDIR%\%%~nf-alluser" "InstallAllUsers=1 CompileAl…
32 …if defined TESTPERUSER call :test "%%~ff" "%TARGETDIR%\%%~nf-peruser" "InstallAllUsers=0 CompileAl…
38 for %%f in ("%PCBUILD%amd64\en-us\*.exe") do (
39 …if defined TESTALLUSER call :test "%%~ff" "%TARGETDIR%\%%~nf-alluser" "InstallAllUsers=1 CompileAl…
41 …if defined TESTPERUSER call :test "%%~ff" "%TARGETDIR%\%%~nf-peruser" "InstallAllUsers=0 CompileAl…
63 "%~2\Python\python.exe" -c "import sys; print(sys.version)" > "%~2\version.txt" 2>&1
84 "%~2\Python\python.exe" -m pip install "azure<0.10" > "%~2\pip.txt" 2>&1
86 "%~2\Python\python.exe" -m pip uninstall -y azure python-dateutil six >> "%~2\pip.txt" 2>&1
92 … "%~2\Python\python.exe" -m test -uall -v test_ttk_guionly test_tk test_idle > "%~2\tcltk.txt" 2>&1
106 echo testrelease.bat [--target TARGET] [-x86] [-x64] [--alluser] [--peruser] [-h]
108 echo --target (-t) Specify the target directory for installs and logs
109 echo -x86 Run tests for x86 installers
110 echo -x64 Run tests for x64 installers
111 echo --alluser (-a) Run tests for all-user installs (requires Administrator)
112 echo --peruser (-p) Run tests for per-user installs
113 echo -h Display this help information