Update copyright year in most headers.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / gdb701.exp
CommitLineData
4c38e0a4 1# Copyright 2002, 2007, 2008, 2009, 2010 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
23gdb_exit
24if [mi_gdb_start] {
25 continue
26}
27
28set testfile gdb701
29set srcfile "$testfile.c"
30set binfile $objdir/$subdir/$testfile
31if {[gdb_compile $srcdir/$subdir/$srcfile $binfile executable debug] != ""} {
b60f0898
JB
32 untested gdb701.exp
33 return -1
8038ed97
KS
34}
35
36# When varobj reports the types of objects, it often isn't really reporting
37# the type as GDB knows it. For example, in this testcase, we have a
38# structure which has been typedefed. A varobj of this type would really have
39# a type of "TYPE_CODE_TYPEDEF". It's target type is "TYPE_CODE_STRUCT". Varobj
40# should skip over the TYPEDEF type when figuring out the varobj's children.
41# If it doesn't, Bad Things Happen(TM).
42
43# Run to main
44mi_run_to_main
45
46# Step over "foo = 0"
47mi_next "step over \"foo = 0\""
48
9e8e3afe 49mi_create_varobj "fooPtr" "foo" "create fooPtr"
8038ed97
KS
50
51mi_gdb_test "-var-list-children fooPtr" \
52 "(&\".*\"\r\n)*\\^done,numchild=\"3\",.*" \
53 "list children of fooPtr"
54
55foreach i [list x y z] {
56 mi_gdb_test "-var-list-children fooPtr.$i" \
0cc7d26f 57 "(&\".*\"\r\n)*\\^done,numchild=\"0\",has_more=\"0\"" \
8038ed97
KS
58 "list children of fooPtr.$i"
59}
60
61mi_gdb_exit
62return 0
This page took 0.71443 seconds and 4 git commands to generate.