Re: ld plugin bfd_make_readable leak
[binutils-gdb.git] / gdb / testsuite / gdb.ada / mi_ex_cond.exp
blob4f3aef3aea5b9e0f57d63c294cdc0a6043e8b85e
1 # Copyright 2013-2024 Free Software Foundation, Inc.
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.
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.
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/>.
16 load_lib "ada.exp"
18 require allow_ada_tests gnat_runtime_has_debug_info
20 standard_ada_testfile foo
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-bargs additional_flags=-static additional_flags=-margs ]] != "" } {
23   return -1
26 # A global variable used to simplify the maintenance of some of
27 # the regular expressions below.
28 set any_nb "\[0-9\]+"
30 load_lib mi-support.exp
31 set MIFLAGS "-i=mi"
33 if {[mi_clean_restart $binfile]} {
34     return
37 # And finally, the meat of the testcase... Insert an Ada exception
38 # catchpoint that uses both conditions and exception name.
40 mi_gdb_test "-catch-exception -c \"i = 2\" -e constraint_error" \
41             "\\^done,bkptno=\"$decimal\",bkpt={.*disp=\"keep\",enabled=\"y\",what=\"`constraint_error' Ada exception\",.*,cond=\"i = 2\",.*}" \
42             "catch C_E if i = 2"
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).
50 mi_run_cmd
52 mi_expect_stop \
53     "\"breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb\",exception-name=\"CONSTRAINT_ERROR(\",exception-message=\"foo\\.adb:$decimal explicit raise)?\"" \
54     "foo" "" ".*" ".*" \
55     ".*" \
56     "run to exception catchpoint hit"
58 # Make sure that any of the catchpoint re-evaluations didn't cause
59 # a clobbering of some of the exeption's info.
61 mi_gdb_test "-break-list" \
62     "\\^done,.*,what=\"`constraint_error' Ada exception\",.*,cond=\"i = 2\",.*" \
63     "-break-list"