wip
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
light7734 2025-10-09 12:06:59 +03:30
parent 022d2c90e7
commit 3a20f39864
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

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