]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.ada/catch_assert_if.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / catch_assert_if.exp
1 # Copyright 2018-2024 Free Software Foundation, Inc.
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
16 load_lib "ada.exp"
17
18 require allow_ada_tests gnat_runtime_has_debug_info
19
20 standard_ada_testfile bla
21
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-gnata ]] != "" } {
23 return -1
24 }
25
26 clean_restart ${testfile}
27
28 set eol "\r\n"
29 set sp "\[ \t\]*"
30
31 # Here is the scenario:
32 # - Restart the debugger from scratch, runto_main
33 # We'll catch assertions if Global_Var = 2
34 # - continue, we should see the second failed assertion
35 # - continue, the program exits.
36
37 if {![runto_main]} {
38 return 0
39 }
40
41 gdb_test "catch assert if Global_Var = 2" \
42 "Catchpoint $decimal: failed Ada assertions" \
43 "insert catchpoint on failed assertions with condition"
44
45 # Check that condition is stored and properly displayed.
46
47 set exp_bp ".*$decimal${sp}catchpoint${sp}keep${sp}y${sp}failed Ada assertions$eol${sp}stop only if Global_Var = 2.*"
48 gdb_test "info breakpoint" $exp_bp "Check catch assertions with condition"
49
50 set bp_location [gdb_get_line_number "STOP" ${testdir}/bla.adb]
51
52 set catchpoint_msg \
53 "Catchpoint $decimal, failed assertion at $hex in bla \\\(\\\).*at .*bla.adb:$bp_location"
54 gdb_test "continue" \
55 "Continuing\.$eol$eol$catchpoint_msg$eol.*STOP" \
56 "continuing to expected failed assertion"
57
58 gdb_test "continue" \
59 "Continuing\..*$inferior_exited_re.*" \
60 "continuing to program completion"