1 # Copyright 2018-2019 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 standard_ada_testfile bla
20 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-gnata ]] != "" } {
24 clean_restart ${testfile}
26 ######################################################################
27 # 1. Try catching all exceptions to check that runtime supports it. #
28 ######################################################################
33 if ![runto_main] then {
34 fail "cannot run to main, testcase aborted"
38 set msg "insert catchpoint on all Ada exceptions"
39 gdb_test_multiple "catch exception" $msg {
40 -re "Catchpoint $decimal: all Ada exceptions$eol$gdb_prompt $" {
43 -re "Your Ada runtime appears to be missing some debugging information.*$eol$gdb_prompt $" {
44 # If the runtime was not built with enough debug information,
45 # or if it was stripped, we can not test exception
52 ##################################################
53 # 2. Try catching conditional failed assertion. #
54 ##################################################
56 # Here is the scenario:
57 # - Restart the debugger from scratch, runto_main
58 # We'll catch assertions if Global_Var = 2
59 # - continue, we should see the second failed assertion
60 # - continue, the program exits.
62 if ![runto_main] then {
63 fail "cannot run to main, testcase aborted"
67 gdb_test "catch assert if Global_Var = 2" \
68 "Catchpoint $decimal: failed Ada assertions" \
69 "insert catchpoint on failed assertions with condition"
71 # Check that condition is stored and properly displayed.
73 set exp_bp ".*$decimal${sp}breakpoint${sp}keep${sp}y${sp}$hex failed Ada assertions$eol${sp}stop only if Global_Var = 2.*"
74 gdb_test "info breakpoint" $exp_bp "Check catch assertions with condition"
76 set bp_location [gdb_get_line_number "STOP" ${testdir}/bla.adb]
79 "Catchpoint $decimal, failed assertion at $hex in bla \\\(\\\).*at .*bla.adb:$bp_location"
81 "Continuing\.$eol$catchpoint_msg$eol.*STOP" \
82 "continuing to expected failed assertion"
85 "Continuing\..*$inferior_exited_re.*" \
86 "continuing to program completion"