From 8fe39ca2b936a046a5a6fb6d1504f9727fd92e83 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Tue, 28 Apr 2026 17:07:05 -0700 Subject: [PATCH] test asan summary print in github actions --- run_tests.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run_tests.bat b/run_tests.bat index 7719fd79..042d60b6 100644 --- a/run_tests.bat +++ b/run_tests.bat @@ -26,14 +26,15 @@ for %%m in (%MODE_VALUES%) do for %%c in (%CC_VALUES%) do ( set PATH=%clang_path%..\lib\clang\%clang_version%\lib\windows;!PATH! ) + rem raddbg dies under asan on statup + call build.bat meta %%c %%m asan raddbg || exit /b 1 + rem clang does not compile with asan in release mode because it runs out of memory if "%%c" equ "clang" ( call build.bat meta %%c %%m %TARGET_VALUES% || exit /b 1 ) else ( call build.bat meta asan %%c %%m %TARGET_VALUES% || exit /b 1 ) - rem raddbg dies under asan on statup - call build.bat meta %%c %%m raddbg || exit /b 1 pushd build torture -s:Dbg* %* || exit /b 1