xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/signest.exp (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1# This testcase is part of GDB, the GNU debugger.
2
3# Copyright 2011-2016 Free Software Foundation, Inc.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18standard_testfile
19
20if [target_info exists gdb,nosignals] {
21    verbose "Skipping ${testfile}.exp because of nosignals."
22    return -1
23}
24
25if [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug}] {
26    untested ${testfile}.exp
27    return -1
28}
29
30if ![runto_main] then {
31    untested ${testfile}.exp
32    return -1
33}
34
35# If we can examine what's at memory address 0, it is possible that we
36# could also execute it.  This could probably make us run away,
37# executing random code, which could have all sorts of ill effects,
38# especially on targets without an MMU.  Don't run the tests in that
39# case.
40
41if { [is_address_zero_readable] } {
42    untested "Memory at address 0 is possibly executable"
43    return -1
44}
45
46# Run until we hit the SIGSEGV (or SIGBUS on some platforms).
47gdb_test "continue" \
48	 ".*Program received signal (SIGBUS|SIGSEGV).*bowler.*" \
49         "continue to fault"
50
51# Insert conditional breakpoint at faulting instruction
52gdb_test "break if 0" ".*" "set conditional breakpoint"
53
54# Set SIGSEGV/SIGBUS to pass+nostop
55gdb_test "handle SIGSEGV nostop print pass" ".*" "pass SIGSEGV"
56gdb_test "handle SIGBUS nostop print pass" ".*" "pass SIGBUS"
57
58# Step off the faulting instruction into the handler, triggering nested faults
59gdb_test "continue" \
60         ".*Program received signal (SIGBUS|SIGSEGV).*Program received signal (SIGBUS|SIGSEGV).*exited normally.*" \
61	 "run through nested faults"
62
63