Use read_memory in ada_exception_message_1
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / mi_catch_ex.exp
CommitLineData
b811d2c2 1# Copyright 2011-2020 Free Software Foundation, Inc.
956a9fb9
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
8223e12c 18standard_ada_testfile foo
956a9fb9 19
956a9fb9
JB
20if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-gnata ]] != "" } {
21 return -1
22}
23
24# Some global variables used to simplify the maintenance of some of
25# the regular expressions below.
26set any_nb "\[0-9\]+"
27set eol "\[\r\n\]+"
28
29# Before going any further, verify that we can insert exception
30# catchpoints... That way, we won't have to do this while doing
31# the actual GDB/MI testing.
32
33clean_restart ${testfile}
34
35if ![runto_main] then {
bc6c7af4 36 fail "cannot run to main, testcase aborted"
956a9fb9
JB
37 return 0
38}
39
40set msg "insert catchpoint on all Ada exceptions"
41gdb_test_multiple "catch exception" $msg {
42 -re "Catchpoint $any_nb: all Ada exceptions$eol$gdb_prompt $" {
43 pass $msg
44 }
a6af7abe 45 -re "Your Ada runtime appears to be missing some debugging information.*\[\r\n\]+$gdb_prompt $" {
956a9fb9
JB
46 # If the runtime was not built with enough debug information,
47 # or if it was stripped, we can not test exception
48 # catchpoints.
49 unsupported $msg
50 return -1
51 }
52}
53
54# Now, we can start the GDB/MI testing itself...
55
56load_lib mi-support.exp
57set MIFLAGS "-i=mi"
58
59gdb_exit
60if [mi_gdb_start] {
61 continue
62}
63
64mi_delete_breakpoints
65mi_gdb_reinitialize_dir $srcdir/$subdir
66mi_gdb_load ${binfile}
67
68####################################
69# 1. Try catching all exceptions. #
70####################################
71
dbb0ab10
TV
72with_test_prefix "scenario 1" {
73 if ![mi_run_to_main] then {
74 fail "cannot run to main, testcase aborted"
75 return 0
76 }
956a9fb9
JB
77}
78
2a3be966 79mi_gdb_test "-catch-exception" \
f06f1252 80 "\\^done,bkptno=\"$decimal\",bkpt={.*disp=\"keep\",enabled=\"y\",what=\"all Ada exceptions\",.*}" \
2a3be966 81 "catch all exceptions"
956a9fb9 82
45db7c09
PA
83# Continue to caught exception.
84
e547c119 85proc continue_to_exception { exception_name exception_message test } {
45db7c09
PA
86 global hex any_nb
87
88 mi_send_resuming_command "exec-continue" "$test"
89
90 # Match console stream output.
91 gdb_expect {
10329bb2 92 -re " $exception_name\( \\($exception_message\\)\)? at $hex in foo " {
45db7c09
PA
93 }
94 timeout {
95 fail "$test (timeout)"
96 return -1
97 }
98 }
99
100 # Now MI stream output.
101 mi_expect_stop \
10329bb2 102 "breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb\",exception-name=\"$exception_name\(\",exception-message=\"$exception_message\)?" \
45db7c09
PA
103 "foo" "" ".*" ".*" \
104 ".*" \
105 $test
106}
107
108continue_to_exception \
e547c119 109 "CONSTRAINT_ERROR" "foo\\.adb:$decimal explicit raise" \
45db7c09
PA
110 "continue until CE caught by all-exceptions catchpoint"
111
112continue_to_exception \
e547c119 113 "PROGRAM_ERROR" "foo\\.adb:$decimal explicit raise" \
45db7c09 114 "continue until PE caught by all-exceptions catchpoint"
956a9fb9
JB
115
116################################################
117# 2. Try catching only some of the exceptions. #
118################################################
119
120# Here is the scenario:
121# - Restart the debugger from scratch, runto_main
122# - We'll catch only "Program_Error"
123# We'll catch assertions
124# We'll catch unhandled exceptions
125# - continue, we should see the first Program_Error exception
126# - continue, we should see the failed assertion
127# - continue, we should see the unhandled Constrait_Error exception
128# - continue, the program exits.
129
dbb0ab10
TV
130with_test_prefix "scenario 2" {
131 if ![mi_run_to_main] then {
132 fail "cannot run to main, testcase aborted"
133 return 0
134 }
956a9fb9
JB
135}
136
2a3be966 137mi_gdb_test "-catch-exception -e Program_Error" \
f06f1252 138 "\\^done,bkptno=\"$decimal\",bkpt={.*disp=\"keep\",enabled=\"y\",what=\"`Program_Error' Ada exception\",.*}" \
2a3be966 139 "catch Program_Error"
956a9fb9 140
2a3be966 141mi_gdb_test "-catch-assert" \
f06f1252 142 "\\^done,bkptno=\"$decimal\",bkpt={.*disp=\"keep\",enabled=\"y\",what=\"failed Ada assertions\",.*}" \
2a3be966 143 "catch assert failures"
956a9fb9 144
2a3be966 145mi_gdb_test "-catch-exception -u" \
f06f1252 146 "\\^done,bkptno=\"$decimal\",bkpt={.*disp=\"keep\",enabled=\"y\",what=\"unhandled Ada exceptions\",.*}" \
2a3be966 147 "catch unhandled exceptions"
956a9fb9
JB
148
149mi_execute_to "exec-continue" \
e547c119 150 "breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb\",exception-name=\"PROGRAM_ERROR(\",exception-message=\"foo\\.adb:$decimal explicit raise)?" \
956a9fb9
JB
151 "foo" "" ".*" ".*" \
152 ".*" \
153 "continue to exception catchpoint hit"
154
155mi_execute_to "exec-continue" \
156 "breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb" \
157 "foo" "" ".*" ".*" \
158 ".*" \
c968bd18 159 "continue to assert failure catchpoint hit"
956a9fb9
JB
160
161mi_execute_to "exec-continue" \
162 "breakpoint-hit\",disp=\"keep\",bkptno=\"$any_nb\",exception-name=\"CONSTRAINT_ERROR" \
163 "foo" "" ".*" ".*" \
164 ".*" \
c968bd18 165 "continue to unhandled exception catchpoint hit"
956a9fb9 166
This page took 1.177893 seconds and 4 git commands to generate.