15 строки
408 B
Batchfile
15 строки
408 B
Batchfile
@REM Copyright (c) Microsoft. All rights reserved.
|
|
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
setlocal
|
|
|
|
set build-root=%~dp0..
|
|
rem // resolve to fully qualified path
|
|
for %%i in ("%build-root%") do set build-root=%%~fi
|
|
|
|
REM -- C --
|
|
cd %build-root%\build_all\windows
|
|
call build.cmd --run-longhaul-tests %*
|
|
if errorlevel 1 goto :eof
|
|
cd %build-root%
|