wip
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
light7734 2025-10-09 12:12:39 +03:30
parent f4969685f6
commit 16e2776bf4
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -32,9 +32,12 @@ 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
if [[ $var != *render* ]]; then
echo "Running $test"
if [[ $test == './build/modules/renderer/renderer_tests' ]]; then
echo "Skipping $test"
else
"$test"
echo "Running $test"
fi
done