Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / gdb701.exp
CommitLineData
88b9d363 1# Copyright 2002-2022 Free Software Foundation, Inc.
8038ed97
KS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
8038ed97 6# (at your option) any later version.
e22f8b7c 7#
8038ed97
KS
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.
e22f8b7c 12#
8038ed97 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
8038ed97 15
8038ed97
KS
16#
17# test gdb/701
18#
19
20load_lib mi-support.exp
21set MIFLAGS "-i=mi"
22
298a9cf0
TT
23standard_testfile
24
8038ed97 25if {[gdb_compile $srcdir/$subdir/$srcfile $binfile executable debug] != ""} {
84c93cd5 26 untested "failed to compile"
b60f0898 27 return -1
8038ed97
KS
28}
29
30# When varobj reports the types of objects, it often isn't really reporting
31# the type as GDB knows it. For example, in this testcase, we have a
32# structure which has been typedefed. A varobj of this type would really have
33# a type of "TYPE_CODE_TYPEDEF". It's target type is "TYPE_CODE_STRUCT". Varobj
34# should skip over the TYPEDEF type when figuring out the varobj's children.
35# If it doesn't, Bad Things Happen(TM).
36
37# Run to main
b75d55d4
PA
38mi_clean_restart $binfile
39mi_runto_main
8038ed97
KS
40
41# Step over "foo = 0"
42mi_next "step over \"foo = 0\""
43
9e8e3afe 44mi_create_varobj "fooPtr" "foo" "create fooPtr"
8038ed97
KS
45
46mi_gdb_test "-var-list-children fooPtr" \
47 "(&\".*\"\r\n)*\\^done,numchild=\"3\",.*" \
48 "list children of fooPtr"
49
50foreach i [list x y z] {
51 mi_gdb_test "-var-list-children fooPtr.$i" \
0cc7d26f 52 "(&\".*\"\r\n)*\\^done,numchild=\"0\",has_more=\"0\"" \
8038ed97
KS
53 "list children of fooPtr.$i"
54}
55
56mi_gdb_exit
57return 0
This page took 2.289298 seconds and 4 git commands to generate.