ci(amd64/gcc/unit_tests): made backtraces full and set off pagination
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
light7734 2025-09-24 10:02:57 +03:30
parent fc0f039395
commit c2f2abedd7
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

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