ci(amd64/clang/lsan): fix leak sanitizer errors #57

Merged
light7734 merged 35 commits from ci/leak_sanatizer_fix into main 2025-10-09 14:08:14 +00:00
Showing only changes of commit 3a20f39864 - Show all commits

View file

@ -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