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/>.
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 ]] != "" } {
26 # A global variable used to simplify the maintenance of some of
27 # the regular expressions below.
30 load_lib mi-support.exp
33 if {[mi_clean_restart $binfile]} {
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\",.*}" \
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).
53 "\"breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb\",exception-name=\"CONSTRAINT_ERROR(\",exception-message=\"foo\\.adb:$decimal explicit raise)?\"" \
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\",.*" \