diff options
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/gdb_backtrace | 17 | ||||
-rwxr-xr-x | source4/script/tests/selftest.sh | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/source4/script/gdb_backtrace b/source4/script/gdb_backtrace new file mode 100755 index 0000000000..0ba8c0eaad --- /dev/null +++ b/source4/script/gdb_backtrace @@ -0,0 +1,17 @@ +#!/bin/sh + +# we want everything on stderr, so the program is not disturbed +exec 1>&2 + +PID=$1 +PROG=$2 + +TMPFILE=/tmp/gdb.$$ +cat << EOF > $TMPFILE +set height 1000 +bt full +quit +EOF + +gdb -batch -x $TMPFILE $PROG $PID < /dev/null +/bin/rm -f $TMPFILE diff --git a/source4/script/tests/selftest.sh b/source4/script/tests/selftest.sh index 3f1bea75f1..673e6a06a8 100755 --- a/source4/script/tests/selftest.sh +++ b/source4/script/tests/selftest.sh @@ -92,6 +92,7 @@ cat >$CONFFILE<<EOF name resolve order = bcast interfaces = lo* tls enabled = $TLS_ENABLED + panic action = $SRCDIR/script/gdb_backtrace %PID% %PROG% [tmp] path = $TMPDIR |