From f1b0acaac23917d10dbf263acfe680d16ca3dbe9 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Thu, 9 Mar 2017 11:13:24 -0700 Subject: [PATCH] autotest: print full backtrace of coredumps Show local variables in the backtrace. Change-Id: I4bb5e8a180bf18377ab6f222b582ca4e5d0d54d9 Signed-off-by: Daniel Verkamp --- scripts/autotest_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/autotest_common.sh b/scripts/autotest_common.sh index 3d34d4db1..7f89f958b 100755 --- a/scripts/autotest_common.sh +++ b/scripts/autotest_common.sh @@ -98,7 +98,7 @@ function process_core() { echo "exe for $core is $exe" if [[ ! -z "$exe" ]]; then if hash gdb; then - gdb -batch -ex "bt" $exe $core + gdb -batch -ex "bt full" $exe $core fi cp $exe $output_dir fi