From c2f2abedd712b36f0a5f3d74184eea469c080e62 Mon Sep 17 00:00:00 2001 From: light7734 Date: Wed, 24 Sep 2025 10:02:57 +0330 Subject: [PATCH] ci(amd64/gcc/unit_tests): made backtraces full and set off pagination --- tools/ci/amd64/gcc/unit_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/amd64/gcc/unit_tests.sh b/tools/ci/amd64/gcc/unit_tests.sh index 27d7600..33879e4 100755 --- a/tools/ci/amd64/gcc/unit_tests.sh +++ b/tools/ci/amd64/gcc/unit_tests.sh @@ -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