1 # Copyright 2012-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_location [gdb_get_line_number "STOP1" ${testdir}/foo.adb]
27 runto "foo.adb:$bp_location"
29 # Print My_Object and My_Object.Ptr when Ptr is null...
31 gdb_test "print my_object" \
32 "= \\(n => 3, ptr => 0x0, data => \\(3, 5, 8\\)\\)" \
33 "print My_Object with null Ptr"
35 gdb_test "print my_object.ptr" \
36 "= \\(foo.table_access\\) 0x0" \
37 "print My_Object.Ptr when null"
39 # Same for My_P_Object...
41 gdb_test "print my_p_object" \
42 "= \\(n => 3, ptr => 0x0, data => \\(3, 5, 8\\)\\)" \
43 "print My_P_Object with null Ptr"
45 gdb_test "print my_p_object.ptr" \
46 "\\(foo.p_table_access\\) 0x0" \
47 "print My_P_Object.Ptr when null"
49 # Continue until the Ptr component of both objects get allocated.
51 set bp_location [gdb_get_line_number "STOP2" ${testdir}/foo.adb]
53 gdb_breakpoint "foo.adb:$bp_location"
56 "Breakpoint $decimal, foo \\(\\) at .*foo.adb:$decimal.*" \
59 # Inspect My_Object again...
61 gdb_test "print my_object" \
62 "= \\(n => 3, ptr => $hex, data => \\(3, 5, 8\\)\\)" \
63 "print my_object after setting Ptr"
65 gdb_test "print my_object.ptr" \
66 "\\(foo.table_access\\) $hex" \
67 "print My_P_Object.Ptr when no longer null"
69 gdb_test "print my_object.ptr.all" \
72 # Same with My_P_Object...
74 gdb_test "print my_p_object" \
75 "= \\(n => 3, ptr => $hex, data => \\(3, 5, 8\\)\\)" \
76 "print my_p_object after setting Ptr"
78 gdb_test "print my_p_object.ptr" \
79 "= \\(foo.p_table_access\\) $hex" \
80 "print My_P_Object.Ptr when no longer null"
82 gdb_test "print my_p_object.ptr.all" \