gdb/testsuite/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / exception.exp
CommitLineData
4c38e0a4 1# Copyright 1997, 1998, 2004, 2005, 2007, 2008, 2009, 2010
0fb0cc75 2# Free Software Foundation, Inc.
7be570e7
JM
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
7be570e7 7# (at your option) any later version.
e22f8b7c 8#
7be570e7
JM
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
7be570e7 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
7be570e7 16
041ab88c 17# This file is part of the gdb testsuite.
7be570e7
JM
18# tests for exception-handling support
19# Written by Satish Pai <pai@apollo.hp.com> 1997-07-23
041ab88c 20# Rewritten by Michael Chastain <mec.gnu@mindspring.com> 2004-01-08
7be570e7 21
041ab88c
MC
22# This file used to have two copies of the tests with different
23# compiler flags for hp-ux. Instead, the user should set CXXOPTS
24# or run runtest with --target_board unix/gdb:debug_flags="..."
25# to choose the compiler flags.
26#
6fa9022e 27# The interesting compiler flags are: "aCC +A -Wl,-a,-archive" .
041ab88c
MC
28# Static-linked executables use a different mechanism to get the
29# address of the notification hook in the C++ support library.
7be570e7 30
041ab88c
MC
31# TODO: this file has many absolute line numbers.
32# Replace them with gdb_get_line_number.
7be570e7 33
041ab88c
MC
34set ws "\[\r\n\t \]+"
35set nl "\[\r\n\]+"
7be570e7 36
041ab88c
MC
37if $tracelevel then {
38 strace $tracelevel
39}
7be570e7 40
759f0f0b 41if { [skip_stl_tests] } { continue }
5f579bc5 42
c1d88655
UW
43# On SPU this test fails because the executable exceeds local storage size.
44if { [istarget "spu*-*-*"] } {
45 return 0
46}
47
7be570e7
JM
48set testfile "exception"
49set srcfile ${testfile}.cc
50set binfile ${objdir}/${subdir}/${testfile}
51
041ab88c 52if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
53 untested exception.exp
54 return -1
7be570e7 55}
7be570e7
JM
56
57# Start with a fresh gdb
58
59set prms_id 0
60set bug_id 0
61
62gdb_exit
63gdb_start
64gdb_reinitialize_dir $srcdir/$subdir
65gdb_load ${binfile}
66
7be570e7
JM
67# Set a catch catchpoint
68
8a34ac3f
AR
69gdb_test "catch catch" "Catchpoint \[0-9\]+ \\(catch\\)" \
70 "catch catch (before inferior run)"
7be570e7
JM
71
72# Set a throw catchpoint
73
041ab88c 74gdb_test "catch throw" "Catchpoint \[0-9\]+ \\(throw\\)" \
8a34ac3f 75 "catch throw (before inferior run)"
7be570e7 76
7be570e7 77
8a34ac3f
AR
78# The catchpoints should be listed in the list of breakpoints.
79# In case of a statically linked test, we won't have a pending breakpoint.
80# Hence we allow for both an address or "<PENDING>". If we ever become able
81# to tell whether the target is linked statically or not, we can be more
82# precise and require exact output.
83set addr "\(<PENDING>|$hex\)"
041ab88c 84set re_head "Num${ws}Type${ws}Disp${ws}Enb${ws}Address${ws}What"
8a34ac3f
AR
85set re_2_bp "1${ws}breakpoint${ws}keep${ws}y${ws}$addr${ws}exception catch"
86set re_3_bp "2${ws}breakpoint${ws}keep${ws}y${ws}$addr${ws}exception throw"
041ab88c 87
8a34ac3f 88set name "info breakpoints (before inferior run)"
041ab88c 89gdb_test_multiple "info breakpoints" $name {
8a34ac3f 90 -re "$re_head${ws}$re_2_bp${ws}$re_3_bp\r\n$gdb_prompt $" {
041ab88c
MC
91 pass $name
92 }
8a34ac3f
AR
93 -re ".*$gdb_prompt $"
94 {
95 fail $name
96 }
041ab88c
MC
97}
98
8a34ac3f
AR
99gdb_test "tbreak main" "Temporary breakpoint 3.*" \
100 "Set temporary breakpoint at main"
041ab88c 101
8a34ac3f
AR
102set ok 0
103gdb_run_cmd
104gdb_test_multiple "" "Run to main" {
105 -re "Temporary breakpoint 3,.*$gdb_prompt $" {
106 pass "Run to main"
107 set ok 1
041ab88c 108 }
8a34ac3f
AR
109}
110
111if { !$ok } {
112 continue
113}
114
115set addr "$hex"
116set re_head "Num${ws}Type${ws}Disp${ws}Enb${ws}Address${ws}What"
117set re_2_bp "1${ws}breakpoint${ws}keep${ws}y${ws}$addr${ws}exception catch"
118set re_3_bp "2${ws}breakpoint${ws}keep${ws}y${ws}$addr${ws}exception throw"
119
120set name "info breakpoints (after inferior run)"
121gdb_test_multiple "info breakpoints" $name {
122 -re "$re_head${ws}$re_2_bp${ws}$re_3_bp\r\n$gdb_prompt $" {
123 pass $name
041ab88c 124 }
8a34ac3f
AR
125 -re ".*$gdb_prompt $"
126 {
127 send_user "\n---\n$expect_out(buffer)\n---\n"
128 fail $name
129 }
7be570e7
JM
130}
131
132# Get the first exception thrown
133
041ab88c
MC
134set name "continue to first throw"
135gdb_test_multiple "continue" $name {
136 -re "Continuing.${ws}Catchpoint \[0-9\]+ \\(exception thrown\\), throw location.*${srcfile}:30, catch location .*${srcfile}:50\r\n$gdb_prompt $" {
137 pass $name
138 }
8a34ac3f
AR
139 -re "Continuing.${ws}Catchpoint \[0-9\]+ \\(exception thrown\\).*\r\n$gdb_prompt $" {
140 pass $name
041ab88c 141 }
7be570e7
JM
142}
143
041ab88c
MC
144# Backtrace from the throw point.
145# This should get to user code.
7be570e7 146
041ab88c
MC
147set name "backtrace after first throw"
148gdb_test_multiple "backtrace" $name {
cec808ec
KS
149 -re ".*#\[0-9\]+.*\[\[:<:\]\]__cxa_throw\[\[:>:\]\].*#\[0-9\]+${ws}$hex in foo \\(i=20\\) at .*${srcfile}:\[0-9\]+\r\n#\[0-9\]+${ws}$hex in main \\(.*\\) at .*${srcfile}:\[0-9\]+\r\n$gdb_prompt $" {
150 # Either __cxxabiv1::__cxa_throw or __cxa_throw can be printed
151 # depending on debug info presence.
041ab88c
MC
152 pass $name
153 }
7be570e7
JM
154}
155
041ab88c 156# Continue to the catch.
7be570e7 157
041ab88c
MC
158set name "continue to first catch"
159gdb_test_multiple "continue" $name {
160 -re "Continuing.${ws}Catchpoint \[0-9\]+ \\(exception caught\\), throw location.*${srcfile}:30, catch location .*${srcfile}:50\r\n$gdb_prompt $" {
161 pass $name
162 }
8a34ac3f
AR
163 -re "Continuing.${ws}Catchpoint \[0-9\]+ \\(exception caught\\).*\r\n$gdb_prompt $" {
164 pass $name
041ab88c 165 }
7be570e7
JM
166}
167
041ab88c
MC
168# Backtrace from the catch point.
169# This should get to user code.
7be570e7 170
041ab88c
MC
171set name "backtrace after first catch"
172gdb_test_multiple "backtrace" $name {
cec808ec 173 -re ".*#\[0-9\]+.*\[\[:<:\]\]__cxa_begin_catch\[\[:>:\]\].*#\[0-9\]+${ws}$hex in main \\(.*\\) at .*$srcfile:\[0-9\]+\r\n$gdb_prompt $" {
041ab88c
MC
174 pass $name
175 }
7be570e7
JM
176}
177
041ab88c 178# Continue to second throw.
7be570e7 179
041ab88c
MC
180set name "continue to second throw"
181gdb_test_multiple "continue" $name {
182 -re "Continuing.${ws}Got an except 13${ws}Catchpoint \[0-9\]+ \\(exception thrown\\), throw location.*${srcfile}:30, catch location .*${srcfile}:58\r\n$gdb_prompt $" {
183 pass $name
184 }
8a34ac3f
AR
185 -re "Continuing.${ws}Got an except 13${ws}Catchpoint \[0-9\]+ \\(exception thrown\\).*\r\n$gdb_prompt $" {
186 pass $name
041ab88c 187 }
7be570e7
JM
188}
189
041ab88c
MC
190# Backtrace from the throw point.
191# This should get to user code.
7be570e7 192
041ab88c
MC
193set name "backtrace after second throw"
194gdb_test_multiple "backtrace" $name {
cec808ec 195 -re ".*#\[0-9\]+.*\[\[:<:\]\]__cxa_throw\[\[:>:\]\].*#\[0-9\]+${ws}$hex in foo \\(i=20\\) at .*${srcfile}:\[0-9\]+\r\n#\[0-9\]+${ws}$hex in main \\(.*\\) at .*${srcfile}:\[0-9\]+\r\n$gdb_prompt $" {
041ab88c
MC
196 pass $name
197 }
7be570e7
JM
198}
199
041ab88c 200# Continue to second catch.
7be570e7 201
041ab88c
MC
202set name "continue to second catch"
203gdb_test_multiple "continue" $name {
204 -re "Continuing.${ws}Catchpoint \[0-9\]+ \\(exception caught\\), throw location.*${srcfile}:30, catch location .*${srcfile}:58\r\n$gdb_prompt $" {
205 pass $name
206 }
8a34ac3f
AR
207 -re "Continuing.${ws}Catchpoint \[0-9\]+ \\(exception caught\\).*\r\n$gdb_prompt $" {
208 pass $name
041ab88c 209 }
7be570e7
JM
210}
211
041ab88c
MC
212# Backtrace from the catch point.
213# This should get to user code.
7be570e7 214
041ab88c
MC
215set name "backtrace after second catch"
216gdb_test_multiple "backtrace" $name {
cec808ec 217 -re ".*#\[0-9\]+.*\[\[:<:\]\]__cxa_begin_catch\[\[:>:\]\].*#\[0-9\]+${ws}$hex in main \\(.*\\) at .*$srcfile:\[0-9\]+\r\n$gdb_prompt $" {
041ab88c
MC
218 pass $name
219 }
7be570e7
JM
220}
221
041ab88c
MC
222# That is all for now.
223#
224# The original code had:
225#
226# continue to re-throw ; backtrace
227# continue to catch ; backtrace
228# continue to throw out of main
229#
230# The problem is that "re-throw" does not show a throw; only a catch.
231# I do not know if this is because of a bug, or because the generated
232# code is optimized for a throw into the same function.
233#
234# -- chastain 2004-01-09
This page took 1.087085 seconds and 4 git commands to generate.