]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.mi/mi-inheritance-syntax-error.exp
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-inheritance-syntax-error.exp
1 # Copyright 2011-2012 Free Software Foundation, Inc.
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
16 if { [skip_cplus_tests] } { continue }
17
18 load_lib mi-support.exp
19 set MIFLAGS "-i=mi"
20
21 gdb_exit
22 if [mi_gdb_start] {
23 continue
24 }
25
26 set testfile mi-inheritance-syntax-error
27 set srcfile "$testfile.cc"
28 set binfile $objdir/$subdir/$testfile
29
30 if [get_compiler_info ${binfile} "c++"] {
31 return -1;
32 }
33
34 if {[gdb_compile $srcdir/$subdir/$srcfile $binfile executable {debug c++}] != ""} {
35 untested mi-inheritance-syntax-error.exp
36 return -1
37 }
38
39 # Test that children of derived classes are given the proper
40 # path by -var-info-path-expression
41
42 mi_gdb_load ${binfile}
43 mi_runto C::testLocation
44
45 mi_create_varobj "var1" "this" "create var for THIS"
46
47 mi_list_varobj_children "var1" {
48 {var1.A A 1 A}
49 {var1.public public 1}
50 } "list children of THIS"
51
52 # We don't care what the result of -var-info-path-expression
53 # as long as it can be used in the -data-evaluate-expression
54 # that follows
55 mi_gdb_test "-var-info-path-expression var1.A" \
56 "\\^done,path_expr=\".*\"" \
57 "-var-info-path-expression var1.A"
58
59 # Extract the result of the -var-info-path-expression command
60 # to use it in -data-evaluate-expression
61 set cmd_output $expect_out(2,string)
62 set path [lindex [split $cmd_output "\""] 1]
63 verbose "var-info-path-expression returned $cmd_output" 2
64 verbose "Using $path for data-evaluate-expression" 2
65
66
67 mi_gdb_test "-data-evaluate-expression \"$path\"" \
68 "\\^done,value=\"\{a = 5\}\"" \
69 "-data-evaluate-expression $path"
70
71 mi_gdb_exit
72 return 0