1 # Copyright
2017-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 foo
20 if {[gdb_compile_ada
"${srcfile}" "${binfile}" executable [list debug ]] != "" } {
24 clean_restart $
{testfile
}
26 set bp_top_location
[gdb_get_line_number
"BREAK_TOP" ${testdir}/pck.adb]
27 set bp_middle_location
[gdb_get_line_number
"BREAK_MIDDLE" ${testdir}/pck.adb]
28 set bp_bottom_location
[gdb_get_line_number
"BREAK_BOTTOM" ${testdir}/pck.adb]
29 set bp_dyn_middle_location
[gdb_get_line_number
"BREAK_DYN_MIDDLE" ${testdir}/pck.adb]
31 gdb_breakpoint
"pck.adb:$bp_top_location"
32 gdb_breakpoint
"pck.adb:$bp_middle_location"
33 gdb_breakpoint
"pck.adb:$bp_bottom_location"
34 gdb_breakpoint
"pck.adb:$bp_dyn_middle_location"
39 ".*Breakpoint $decimal, pck.top.assign \\(.*\\).*" \
40 "run to top assign breakpoint"
42 gdb_test
"print obj.n" " = 1" "Print top component field"
45 ".*Breakpoint $decimal, pck.assign \\(.*\\).*" \
46 "continue to bottom assign breakpoint"
48 gdb_test
"print obj.n" " = 4\\.0" "Print bottom component field"
51 ".*Breakpoint $decimal, pck.middle.assign \\(.*\\).*" \
52 "continue to middle assign breakpoint"
54 gdb_test
"print obj.a" " = 48" \
55 "Print top component field in middle assign function"
58 ".*Breakpoint $decimal, pck.assign \\(.*\\).*" \
59 "continue to bottom assign breakpoint (2nd time)"
61 gdb_test
"print obj.x" " = 6" \
62 "Print field existing only in bottom component"
65 ".*Breakpoint $decimal, pck.dyn_middle.assign \\(.*\\).*" \
66 "continue to dyn_middle assign breakpoint"
68 gdb_test
"print obj.u" " = 42" \
69 "Print field existing only in dyn_middle component"