From dd0f8ebf0a362712352fa0c909752cd282798806 Mon Sep 17 00:00:00 2001 From: light7734 Date: Mon, 22 Sep 2025 13:57:52 +0330 Subject: [PATCH] ci(amd64/gcc/unit_tests): add gdb-backtrace to tests --- tools/ci/amd64/gcc/unit_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ci/amd64/gcc/unit_tests.sh b/tools/ci/amd64/gcc/unit_tests.sh index c64a2a1..5497ed3 100755 --- a/tools/ci/amd64/gcc/unit_tests.sh +++ b/tools/ci/amd64/gcc/unit_tests.sh @@ -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