run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / sigaltstack.exp
CommitLineData
7b6bb8da 1# Copyright 2004, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
44f4de1a
AC
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
44f4de1a 6# (at your option) any later version.
e22f8b7c 7#
44f4de1a
AC
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#
44f4de1a 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/>.
44f4de1a
AC
15
16
17# The program sigaltstack.c creates a backtrace containing nested
18# signal handlers on an alternative stack. This in turn leads to a
19# non-contiguous (and possibly non-monotonic) backtrace - stack
20# address jump at the normal-alt stack boundary.
21
22# This test confirms that GDB can both backtrace through and finish
23# such a stack.
24
25if [target_info exists gdb,nosignals] {
26 verbose "Skipping signals.exp because of nosignals."
27 continue
28}
29
30if $tracelevel then {
31 strace $tracelevel
32}
33
44f4de1a
AC
34
35set testfile sigaltstack
36set srcfile ${testfile}.c
37set binfile ${objdir}/${subdir}/${testfile}
38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
ef783a7d 39 untested "Couldn't compile ${srcfile}.c"
44f4de1a
AC
40 return -1
41}
42
43# get things started
44gdb_exit
45gdb_start
46gdb_reinitialize_dir $srcdir/$subdir
47gdb_load ${binfile}
48
49# Pass all the alarms straight through (but verbosely)
50gdb_test "handle SIGALRM print pass nostop"
51gdb_test "handle SIGVTALRM print pass nostop"
52gdb_test "handle SIGPROF print pass nostop"
53
54# Advance to main
55if { ![runto_main] } then {
56 gdb_suppress_tests;
57}
58
59# Stop in handle, when at the inner most level
60gdb_test "break catcher if level == INNER"
61gdb_test "continue" ".* catcher .*" "continue to catch"
62# step off the assignment
63gdb_test "next"
64
65# Full backtrace?
5fa290c1 66gdb_test_sequence "bt" "backtrace" {
44f4de1a
AC
67 "\[\r\n\]+.0 \[^\r\n\]* catcher "
68 "\[\r\n\]+.1 .signal handler called."
69 "\[\r\n\]+.2 \[^\r\n\]* thrower .next_level=INNER"
70 "\[\r\n\]+.3 \[^\r\n\]* catcher "
71 "\[\r\n\]+.4 .signal handler called."
72 "\[\r\n\]+.5 \[^\r\n\]* thrower .next_level=OUTER"
73 "\[\r\n\]+.6 \[^\r\n\]* catcher "
5fa290c1 74 "\[\r\n\]+.7 \[^\r\n\]* main "
44f4de1a
AC
75}
76
d2f6abb0 77proc finish_test { pattern msg } {
04f6ecf2
DJ
78 global gdb_prompt
79
d2f6abb0 80 gdb_test_multiple "finish" $msg {
04f6ecf2 81 -re "Cannot insert breakpoint 0.*${gdb_prompt} $" {
d2f6abb0
DJ
82 # Some platforms use a special read-only page for signal
83 # trampolines. We can't set a breakpoint there, and we
84 # don't gracefully fall back to single-stepping.
bbc8b958
TT
85 setup_kfail gdb/1736 "i?86-*-linux*"
86 setup_kfail gdb/1736 "*-*-openbsd*"
d2f6abb0
DJ
87 fail "$msg (could not set breakpoint)"
88 }
6a89fc9c 89 -re "$pattern.*${gdb_prompt} $" {
d2f6abb0
DJ
90 pass $msg
91 }
92 }
93}
94
44f4de1a 95# Finish?
d2f6abb0
DJ
96finish_test "signal handler called." "finish from catch LEAF"
97finish_test "thrower .next_level=INNER, .*" "finish to throw INNER"
98finish_test "catcher .*" "finish to catch INNER"
99finish_test "signal handler called.*" "finish from catch INNER"
100finish_test "thrower .next_level=OUTER, .*" "finish to OUTER"
101finish_test "catcher .*" "finish to catch MAIN"
102finish_test "main .*" "finish to MAIN"
This page took 0.631875 seconds and 4 git commands to generate.