Add support for --start option in -exec-run GDB/MI command.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / relativedebug.exp
CommitLineData
28e7fd62 1# Copyright 2007-2013 Free Software Foundation, Inc.
818f79f6
DJ
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
818f79f6 6# (at your option) any later version.
e22f8b7c 7#
818f79f6
DJ
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
e22f8b7c 12#
818f79f6 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
818f79f6 15
46579ac2
UW
16if [target_info exists gdb,nosignals] {
17 verbose "Skipping relativedebug.exp because of nosignals."
18 continue
19}
20
822bd149
TT
21standard_testfile .c
22
818f79f6
DJ
23if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
24 untested "Couldn't compile test program"
25 return -1
26}
27
28# Get things started.
29
822bd149 30clean_restart ${binfile}
818f79f6
DJ
31
32runto_main
33
34# pause () -> SIGALRM -> handler () -> abort ()
35gdb_test "continue" "Program received signal SIGABRT.*"
36
37# Backtracing through pause broke if glibc has been prelinked,
38# because the separate debug files in /usr/lib/debug had different
39# base addresses.
40
41# incorrect (#6):
42# (gdb) bt
43# #0 0x00325402 in __kernel_vsyscall ()
44# #1 0x00718f20 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
45# #2 0x0071a801 in *__GI_abort () at abort.c:88
46# #3 0x0804841f in handler (signo=14) at ./gdb.base/relativedebug.c:27
47# #4 <signal handler called>
48# #5 0x00325402 in __kernel_vsyscall ()
49# #6 0x0077ebc6 in ?? () from /lib/i686/nosegneg/libc.so.6
50# #7 0x08048455 in main () at ./gdb.base/relativedebug.c:34
51# (gdb)
52
53# correct (#6):
54# (gdb) bt
55# #0 0x00b33402 in __kernel_vsyscall ()
56# #1 0x00718f20 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
57# #2 0x0071a801 in *__GI_abort () at abort.c:88
58# #3 0x0804841f in handler (signo=14) at ./gdb.base/relativedebug.c:27
59# #4 <signal handler called>
60# #5 0x00b33402 in __kernel_vsyscall ()
61# #6 0x0077ebc6 in __pause_nocancel () from /lib/i686/nosegneg/libc.so.6
62# #7 0x08048455 in main () at ./gdb.base/relativedebug.c:34
63# (gdb)
64
65gdb_test "bt" \
66 ".*\[^a-zA-Z\]pause\[^a-zA-Z\].*" \
67 "pause found in backtrace"
This page took 0.74035 seconds and 4 git commands to generate.