Add gdb.Type.optimized_out method.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / relativedebug.exp
1 # Copyright 2007-2015 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
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.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 if [target_info exists gdb,nosignals] {
17 verbose "Skipping relativedebug.exp because of nosignals."
18 continue
19 }
20
21 standard_testfile .c
22
23 if { [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
30 clean_restart ${binfile}
31
32 runto_main
33
34 # pause () -> SIGALRM -> handler () -> abort ()
35 gdb_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
65 gdb_test "bt" \
66 ".*\[^a-zA-Z\]pause\[^a-zA-Z\].*" \
67 "pause found in backtrace"
This page took 0.042824 seconds and 4 git commands to generate.