From 3a20f3986480dfce6e29af65ce6af81e67d96c7c Mon Sep 17 00:00:00 2001 From: light7734 Date: Thu, 9 Oct 2025 12:06:59 +0330 Subject: [PATCH] wip --- tools/ci/amd64/clang/lsan.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/ci/amd64/clang/lsan.sh b/tools/ci/amd64/clang/lsan.sh index 5eb5409..f25f703 100755 --- a/tools/ci/amd64/clang/lsan.sh +++ b/tools/ci/amd64/clang/lsan.sh @@ -33,6 +33,10 @@ cmake . \ export LSAN_OPTIONS="suppressions=$(git rev-parse --show-toplevel)/tools/ci/amd64/clang/lsan.supp" for test in $(find ./build -type f -name '*_tests' -executable); do - echo "Running $test" - "$test" + if [[$test == *renderer* ]]; then + echo "Skipping $test" + else + echo "Running $test" + "$test" + fi done