Skip to content

Commit

Permalink
Error check for check-clang failure was missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
dtarditi committed Nov 27, 2023
1 parent 01decd2 commit 9b8c654
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test_scripts/automation/Windows/test-clang.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ if "%TEST_SUITE%"=="CheckedC" (
rem
) else if "%TEST_SUITE%"=="CheckedC_clang" (
ninja -j %MSBUILD_CPU_COUNT% check-clang
if ERRORLEVEL 1 (goto cmdfailed)
) else if "%TEST_SUITE%"=="CheckedC_LLVM" (
ninja -j %MSBUILD_CPU_COUNT% check-all
if ERRORLEVEL 1 (goto cmdfailed)
if ERRORLEVEL 1 (goto cmdfailed)
)

:succeeded
Expand Down

0 comments on commit 9b8c654

Please sign in to comment.