Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / mi_var_access.exp
CommitLineData
88b9d363 1# Copyright 2020-2022 Free Software Foundation, Inc.
3ae7ab99
TT
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
18if {[skip_ada_tests]} {
19 return -1
20}
21
22standard_ada_testfile mi_access
23
24load_lib mi-support.exp
25set MIFLAGS "-i=mi"
26
27if {[gdb_compile_ada "${srcfile}" "${binfile}" executable debug] != "" } {
28 return -1
29}
30
b75d55d4 31mi_clean_restart $binfile
3ae7ab99 32
b75d55d4 33if {[mi_runto_main] < 0} {
3ae7ab99
TT
34 fail "cannot run to main, testcase aborted"
35 return 0
36}
37
38set bp_location [gdb_get_line_number "STOP" ${testdir}/mi_access.adb]
39mi_continue_to_line \
40 "mi_access.adb:$bp_location" \
41 "stop at start of mi_access"
42
43# The bug was that creating a varobj for A_String_Access would crash.
44mi_gdb_test "-var-create A_String_Access * A_String_Access" \
45 "\\^done,name=\"A_String_Access\",numchild=\"1\",.*" \
46 "Create varobj"
02c6f3f1
TT
47
48set bp_location [gdb_get_line_number "STOP2" ${testdir}/mi_access.adb]
49mi_continue_to_line \
50 "mi_access.adb:$bp_location" \
51 "stop at stop 2"
52
53mi_gdb_test "-var-update A_String_Access" \
54 [string_to_regexp {^done,changelist=[{name="A_String_Access",in_scope="true",type_changed="false",has_more="0"}]}] \
55 "update at stop 2"
56
57mi_gdb_test "-var-list-children A_String_Access" \
58 [string_to_regexp {^done,numchild="1",children=[child={name="A_String_Access.A_String_Access.all",exp="A_String_Access.all",numchild="3",type="array (3 .. 5) of character",thread-id="1"}],has_more="0"}] \
59 "list children at stop 2"
60
61set bp_location [gdb_get_line_number "STOP3" ${testdir}/mi_access.adb]
62mi_continue_to_line \
63 "mi_access.adb:$bp_location" \
64 "stop at stop 3"
65
66mi_gdb_test "-var-update A_String_Access" \
67 [string_to_regexp {^done,changelist=[{name="A_String_Access",in_scope="true",type_changed="true",new_type="pck.string_access",new_num_children="0",has_more="0"}]}] \
68 "update at stop 3"
This page took 0.162701 seconds and 4 git commands to generate.