mirror of
https://github.com/python/cpython.git
synced 2024-11-22 13:28:21 +01:00
711f42de2e
This change essentially replaces usage of `%1` with `%~1`, which removes quotes, if any. Without this change, the if statements fail due to the quotes mangling the syntax. Additionally, this change works around comma being treated as a parameter delimiter in test.bat by escaping commas at time of parsing. Tested combinations of rt and regrtest arguments, all seems to work as before but now you can specify commas in arguments like "-uall,extralargefile".
58 lines
2.3 KiB
Batchfile
58 lines
2.3 KiB
Batchfile
@echo off
|
|
rem Used by the buildbot "test" step.
|
|
setlocal
|
|
|
|
set PATH=%PATH%;%SystemRoot%\SysNative\OpenSSH;%SystemRoot%\System32\OpenSSH
|
|
set here=%~dp0
|
|
set rt_opts=-q -d
|
|
set regrtest_args=
|
|
set arm32_ssh=
|
|
set cmdline_args=%*
|
|
set cmdline_args=%cmdline_args:,=#COMMA#%
|
|
|
|
call:CheckOpts %cmdline_args%
|
|
|
|
if "%PROCESSOR_ARCHITECTURE%"=="ARM" if "%arm32_ssh%"=="true" goto NativeExecution
|
|
if "%arm32_ssh%"=="true" goto :Arm32Ssh
|
|
|
|
:NativeExecution
|
|
call "%here%..\..\PCbuild\rt.bat" %rt_opts% --slow-ci %regrtest_args%
|
|
exit /b %ERRORLEVEL%
|
|
|
|
:Arm32Ssh
|
|
set dashU=-unetwork -udecimal -usubprocess -uurlfetch -utzdata
|
|
if "%SSH_SERVER%"=="" goto :Arm32SshHelp
|
|
if "%PYTHON_SOURCE%"=="" (set PYTHON_SOURCE=%here%..\..\)
|
|
if "%REMOTE_PYTHON_DIR%"=="" (set REMOTE_PYTHON_DIR=C:\python\)
|
|
if NOT "%REMOTE_PYTHON_DIR:~-1,1%"=="\" (set REMOTE_PYTHON_DIR=%REMOTE_PYTHON_DIR%\)
|
|
|
|
set TEMP_ARGS=--temp %REMOTE_PYTHON_DIR%temp
|
|
|
|
set rt_args=%rt_opts% --slow-ci %dashU% %regrtest_args% %TEMP_ARGS%
|
|
ssh %SSH_SERVER% "set TEMP=%REMOTE_PYTHON_DIR%temp& cd %REMOTE_PYTHON_DIR% & %REMOTE_PYTHON_DIR%PCbuild\rt.bat" %rt_args%
|
|
set ERR=%ERRORLEVEL%
|
|
scp %SSH_SERVER%:"%REMOTE_PYTHON_DIR%test-results.xml" "%PYTHON_SOURCE%\test-results.xml"
|
|
exit /b %ERR%
|
|
|
|
:Arm32SshHelp
|
|
echo SSH_SERVER environment variable must be set to administrator@[ip address]
|
|
echo where [ip address] is the address of a Windows IoT Core ARM32 device.
|
|
echo.
|
|
echo The test worker should have the SSH agent running.
|
|
echo Also a key must be created with ssh-keygen and added to both the buildbot worker machine
|
|
echo and the ARM32 worker device: see https://docs.microsoft.com/en-us/windows/iot-core/connect-your-device/ssh
|
|
exit /b 127
|
|
|
|
:CheckOpts
|
|
set arg="%~1"
|
|
if %arg%=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
if %arg%=="-arm64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
if %arg%=="-arm32" (set rt_opts=%rt_opts% %1) & (set arm32_ssh=true) & shift & goto CheckOpts
|
|
if %arg%=="-d" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
if %arg%=="-O" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
if %arg%=="-q" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
|
|
if %arg%=="+d" (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts
|
|
if %arg%=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts
|
|
if NOT %arg%=="" (set regrtest_args=%regrtest_args% %arg:#COMMA#=,%) & shift & goto CheckOpts
|
|
goto:eof
|