]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/mi_ex_cond.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / mi_ex_cond.exp
CommitLineData
1d506c26 1# Copyright 2013-2024 Free Software Foundation, Inc.
2df4d1d5
JB
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
16load_lib "ada.exp"
17
dd473473 18require allow_ada_tests gnat_runtime_has_debug_info
7a82e903 19
2df4d1d5
JB
20standard_ada_testfile foo
21
22if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-bargs additional_flags=-static additional_flags=-margs ]] != "" } {
23 return -1
24}
25
dd473473
TT
26# A global variable used to simplify the maintenance of some of
27# the regular expressions below.
2df4d1d5 28set any_nb "\[0-9\]+"
2df4d1d5
JB
29
30load_lib mi-support.exp
31set MIFLAGS "-i=mi"
32
3ad2b4af 33if {[mi_clean_restart $binfile]} {
cdd42066 34 return
2df4d1d5
JB
35}
36
2df4d1d5
JB
37# And finally, the meat of the testcase... Insert an Ada exception
38# catchpoint that uses both conditions and exception name.
39
40mi_gdb_test "-catch-exception -c \"i = 2\" -e constraint_error" \
f06f1252 41 "\\^done,bkptno=\"$decimal\",bkpt={.*disp=\"keep\",enabled=\"y\",what=\"`constraint_error' Ada exception\",.*,cond=\"i = 2\",.*}" \
2df4d1d5
JB
42 "catch C_E if i = 2"
43
44# It is important that we start the program's execution after having
45# inserted the exception catchpoint above. We want to verify that
46# we are able to re-evaluate the exception catchpoint exception
47# address and stop condition without problems when new shared libraries
48# get mapped (during program startup).
49
50mi_run_cmd
51
52mi_expect_stop \
c569a946 53 "\"breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb\",exception-name=\"CONSTRAINT_ERROR(\",exception-message=\"foo\\.adb:$decimal explicit raise)?\"" \
2df4d1d5
JB
54 "foo" "" ".*" ".*" \
55 ".*" \
56 "run to exception catchpoint hit"
57
58# Make sure that any of the catchpoint re-evaluations didn't cause
59# a clobbering of some of the exeption's info.
60
61mi_gdb_test "-break-list" \
62 "\\^done,.*,what=\"`constraint_error' Ada exception\",.*,cond=\"i = 2\",.*" \
63 "-break-list"