From c254527386afcbe60fe57bd87fb367486abde52d Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sun, 28 Nov 2010 17:32:06 +0300 Subject: build: update gdb_backtrace to make it search for gdb66 as it work on freebsd Autobuild-User: Matthieu Patou Autobuild-Date: Sun Nov 28 16:37:08 CET 2010 on sn-devel-104 --- selftest/gdb_backtrace | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'selftest') diff --git a/selftest/gdb_backtrace b/selftest/gdb_backtrace index e38c451d42..91637ec40c 100755 --- a/selftest/gdb_backtrace +++ b/selftest/gdb_backtrace @@ -37,6 +37,13 @@ case "${UNAME}" in SunOS) DB_LIST="dbx ${DB_LIST}" ;; + # + # FreeBSD comes with a flavor that works gdb66 and one that don't gdb + # (gdb 6.1) let's try it first the one that works ! + # + FreeBSD) + DB_LIST="gdb66 ${DB_LIST}" + ;; esac for DB in ${DB_LIST}; do @@ -83,6 +90,16 @@ quit EOF ${DB_BIN} -c "${BATCHFILE_MAIN}" -i "${BATCHFILE_PRE}" -pid "${PID}" "${BINARY}" ;; + gdb66) +cat << EOF > ${BATCHFILE_MAIN} +set height 1000 +bt full +info locals +kill +quit +EOF + ${DB_BIN} -x "${BATCHFILE_MAIN}" "${BINARY}" "${PID}" + ;; gdb) cat << EOF > ${BATCHFILE_MAIN} set height 1000 -- cgit