ci(amd64/gcc/unit_tests): add gdb-backtrace to tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
light7734 2025-09-22 13:57:52 +03:30
parent ca91c5c1d1
commit dd0f8ebf0a
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -20,5 +20,6 @@ cmake .. \
for test in $(find ./ -type f -name '*_tests' -executable); do
echo "Running $test"
"$test"
gdb -ex='set confirm off' -ex='run' -ex='bt' -ex='quit' "$test"
done