Fix test names starting with uppercase output by basic functions
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / unwindonsignal.exp
CommitLineData
618f726f 1# Copyright 2008-2016 Free Software Foundation, Inc.
b89667eb
DE
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
2390201f
DJ
16if [target_info exists gdb,nosignals] {
17 verbose "Skipping unwindonsignal.exp because of nosignals."
18 continue
19}
20
b89667eb 21
b89667eb
DE
22# Some targets can't do function calls, so don't even bother with this
23# test.
24if [target_info exists gdb,cannot_call_functions] {
bc6c7af4 25 unsupported "this target can not call functions"
b89667eb
DE
26 continue
27}
28
62cef515 29standard_testfile
b89667eb 30
62cef515
TT
31if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
32 untested $testfile.exp
33 return -1
34}
b89667eb
DE
35
36if { ![runto_main] } {
bc6c7af4 37 fail "can't run to main"
b89667eb
DE
38 return 0
39}
40
41gdb_test "break stop_here" "Breakpoint \[0-9\]* at .*"
42gdb_test "continue" "Continuing.*Breakpoint \[0-9\]*, stop_here.*" \
43 "continue to breakpoint at stop_here"
44
45# Turn on unwindonsignal.
27d3a1a2 46gdb_test_no_output "set unwindonsignal on" \
b89667eb 47 "setting unwindonsignal"
27d3a1a2 48
b89667eb
DE
49gdb_test "show unwindonsignal" \
50 "Unwinding of stack .* is on." \
51 "showing unwindonsignal"
52
53# Call function (causing the program to get a signal), and see if gdb handles
54# it properly.
23ffc893
PA
55if {[gdb_test "call gen_signal ()" \
56 "\[\r\n\]*The program being debugged was signaled.*" \
57 "unwindonsignal, inferior function call signaled"] != 0} {
58 return 0
b89667eb
DE
59}
60
61# Verify the stack got unwound.
62gdb_test "bt" \
63 "#0 *\[x0-9a-f in\]*stop_here \\(.*\\) at .*#1 *\[x0-9a-f in\]*main \\(.*\\) at .*" \
64 "unwindonsignal, stack unwound"
65
66# Verify the dummy frame got removed from dummy_frame_stack.
67gdb_test_multiple "maint print dummy-frames" \
68 "unwindonsignal, dummy frame removed" {
69 -re "\[\r\n\]*.*stack=.*code=.*\[\r\n\]+$gdb_prompt $" {
70 fail "unwindonsignal, dummy frame removed"
71 }
72 -re "\[\r\n\]+$gdb_prompt $" {
73 pass "unwindonsignal, dummy frame removed"
74 }
75}
76
77return 0
This page took 0.986497 seconds and 4 git commands to generate.