diff options
author | Sergey Andreenko <seandree@microsoft.com> | 2019-06-14 18:19:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-14 18:19:13 -0700 |
commit | 14a981fd1d92f261870d64435ed50e599747a323 (patch) | |
tree | 33b86a7bb54af961cc771c1e0312c62863cbe13a /build-test.cmd | |
parent | 3eb98b0c307548cae8825551ac5e12afa8161122 (diff) | |
download | coreclr-14a981fd1d92f261870d64435ed50e599747a323.tar.gz coreclr-14a981fd1d92f261870d64435ed50e599747a323.tar.bz2 coreclr-14a981fd1d92f261870d64435ed50e599747a323.zip |
abort build-tests if failed to restore stress dependencies (#25140)
* abort build-tests if failed to restore stress dependencies
* Fix arm condition.
* Add arm64 condition.
* Skip runtime dependencies for arm32/arm64.
Diffstat (limited to 'build-test.cmd')
-rw-r--r-- | build-test.cmd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build-test.cmd b/build-test.cmd index 39c38d415e..e07c926d05 100644 --- a/build-test.cmd +++ b/build-test.cmd @@ -180,6 +180,10 @@ REM === REM ========================================================================================= call "%__TestDir%\setup-stress-dependencies.cmd" /arch %__BuildArch% /outputdir %__BinDir% +if errorlevel 1 ( + echo %__MsgPrefix%Error: setup-stress-dependencies failed. + goto :Exit_Failure +) @if defined _echo @echo on REM ========================================================================================= |