PR gold/14309
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / namespace.exp
CommitLineData
0b302171
JB
1# Copyright 1997-1998, 2000-2004, 2007-2012 Free Software Foundation,
2# Inc.
e6d71bf3
DB
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
e6d71bf3 7# (at your option) any later version.
e22f8b7c 8#
e6d71bf3
DB
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
e6d71bf3 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
e6d71bf3 16
e6d71bf3 17# tests for namespaces
79c2c32d 18# Originally written by Satish Pai <pai@apollo.hp.com> 1997-07-23
e6d71bf3
DB
19
20# This file is part of the gdb testsuite
21
79c2c32d 22# Note: The original tests were geared to the HP aCC compiler,
e6d71bf3
DB
23# which has an idiosyncratic way of emitting debug info
24# for namespaces.
63d06c5c 25# Note: As of 2000-06-03, they passed under g++ - djb
e6d71bf3
DB
26
27
e6d71bf3 28
fc33412a 29if { [skip_cplus_tests] } { continue }
e6d71bf3
DB
30
31set testfile "namespace"
32set srcfile ${testfile}.cc
1fcb5155
DC
33set objfile ${objdir}/${subdir}/${testfile}.o
34set srcfile1 ${testfile}1.cc
35set objfile1 ${objdir}/${subdir}/${testfile}1.o
e6d71bf3
DB
36set binfile ${objdir}/${subdir}/${testfile}
37
4c93b1db 38if [get_compiler_info c++] {
e6d71bf3
DB
39 return -1;
40}
41
e9ea2662
JK
42set xfail_class_types 0
43if {[test_compiler_info {gcc-[0-3]-*}]
44 || [test_compiler_info {gcc-4-[0-4]-*}]} {
45 # The type in class is missing in older GCCs.
46 set xfail_class_types 1
47}
48
1fcb5155 49if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug c++}] != "" } {
b60f0898
JB
50 untested namespace.exp
51 return -1
e6d71bf3
DB
52}
53
1fcb5155 54if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${objfile1}" object {debug c++}] != "" } {
b60f0898
JB
55 untested namespace.exp
56 return -1
1fcb5155 57}
e6d71bf3 58
1fcb5155 59if { [gdb_compile "${objfile} ${objfile1}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
60 untested namespace.exp
61 return -1
1fcb5155 62}
e6d71bf3
DB
63
64gdb_exit
65gdb_start
66gdb_reinitialize_dir $srcdir/$subdir
67gdb_load ${binfile}
68
663b969e 69gdb_test "show lang" "auto; currently c\\+\\+.*"
e6d71bf3
DB
70
71#
72# set it up at a breakpoint so we can play with the variable values
73#
74if ![runto_main] then {
75 perror "couldn't run to breakpoint"
76 continue
77}
78
db144853
MC
79if ![runto 'marker1'] then {
80 perror "couldn't run to marker1"
81 continue
82}
83
84gdb_test "up" ".*main.*" "up from marker1"
e6d71bf3
DB
85
86# Access a data item inside a namespace using colons and
63d06c5c 87# single quotes. :-(
e6d71bf3 88
79c2c32d
DC
89# NOTE: carlton/2003-09-24: the quotes are becoming less necessary (or
90# even desirable.) For tests where it should still work with quotes,
91# I'm including versions both with and without quotes; for tests that
92# shouldn't work with quotes, I'm only including one version.
93
f8d3bf8f
MS
94gdb_test "print 'AAA::c'" \
95 "\\$\[0-9\]* = 0 '\\\\(0|000)'" \
96 "print 'AAA::c'"
e6d71bf3 97
f8d3bf8f
MS
98gdb_test "print AAA::c" \
99 "\\$\[0-9\]* = 0 '\\\\(0|000)'" \
100 "print AAA::c"
79c2c32d 101
e6d71bf3
DB
102# An object declared using "using".
103
f8d3bf8f 104gdb_test "print ina" "\\$\[0-9\]+ = {xx = 33}"
e6d71bf3 105
f8d3bf8f
MS
106gdb_test_multiple "ptype ina" "ptype ina" {
107 -re "type = class (AAA::|)inA \{\r\n\[ \]*public:\r\n\[ \]*int xx;\r\n\[ \]*\r\n\[ \]*.*int fum\\(int\\);\r\n\}\r\n$gdb_prompt $" {
108 pass "ptype ina"
109 }
110 -re "type = class (AAA::|)inA \{\r\n\[ \]*public:\r\n\[ \]*int xx;\r\n\[ \]*\r\n\[ \]*int fum\\(int\\);\r\n.*\}\r\n$gdb_prompt $" {
111 pass "ptype ina"
112 }
e6d71bf3
DB
113}
114
115# Check all functions are known to GDB
116
117setup_xfail hppa*-*-*11* CLLbs14869
f8d3bf8f
MS
118gdb_test_multiple "info func xyzq" "info func xyzq" {
119 -re "All functions.*File.*namespace.cc:\r\nint AAA::A_xyzq\\(int\\);\r\nint BBB::B_xyzq\\(int\\);\r\nchar AAA::xyzq\\(char\\);\r\nchar BBB::xyzq\\(char\\);\r\nchar BBB::CCC::xyzq\\(char\\);\r\nchar BBB::Class::xyzq\\(char\\);\r\n$gdb_prompt $" {
120 pass "info func xyzq"
121 }
122 -re "All functions.*File.*namespace.cc:\r\nint AAA::A_xyzq\\(int\\);\r\nchar AAA::xyzq\\(char\\);\r\nint BBB::B_xyzq\\(int\\);\r\nchar BBB::CCC::xyzq\\(char\\);\r\nchar BBB::Class::xyzq\\(char\\);\r\nchar BBB::xyzq\\(char\\);\r\n$gdb_prompt $" {
123 pass "info func xyzq"
124 }
e6d71bf3
DB
125}
126
127# Call a function in a namespace
128
f8d3bf8f
MS
129gdb_test "print 'AAA::xyzq'('x')" \
130 "\\$\[0-9\]* = 97 'a'" \
131 "print 'AAA::xyzq'('x')"
132
133gdb_test "print AAA::xyzq('x')" \
134 "\\$\[0-9\]* = 97 'a'" \
135 "print AAA::xyzq('x')"
79c2c32d 136
e6d71bf3
DB
137# Break on a function in a namespace
138
b598bfda 139gdb_test "break AAA::xyzq" \
ceeb3d5a 140 "Breakpoint.*at $hex: file.*namespace.cc, line 47\\."
e6d71bf3 141
0e4acfcc
KS
142# Break on a function in the global namespace.
143
144gdb_test "break ::ensureOtherRefs" \
145 "Breakpoint.*at $hex: file.*$srcfile1, line $decimal\\."
146
e6d71bf3
DB
147# Call a function in a nested namespace
148
f8d3bf8f
MS
149gdb_test "print 'BBB::CCC::xyzq'('x')" \
150 "\\$\[0-9\]* = 122 'z'" \
151 "print 'BBB::CCC::xyzq'('x')"
152
153gdb_test "print BBB::CCC::xyzq('x')" \
154 "\\$\[0-9\]* = 122 'z'" \
155 "print BBB::CCC::xyzq('x')"
79c2c32d 156
e6d71bf3
DB
157# Break on a function in a nested namespace
158
b598bfda 159gdb_test "break BBB::CCC::xyzq" \
ceeb3d5a 160 "Breakpoint.*at $hex: file.*namespace.cc, line 63\\."
e6d71bf3 161
0e4acfcc
KS
162# Break on the same function, starting with the global namespace.
163
164gdb_test "break ::BBB::CCC::xyzq" \
165 ".*Breakpoint.*at $hex: file.*$srcfile, line 63\\."
166
e6d71bf3
DB
167# Print address of a function in a class in a namespace
168
f8d3bf8f
MS
169gdb_test "print 'BBB::Class::xyzq'" \
170 "\\$\[0-9\]* = \{char \\((BBB::|)Class \\*( const|), (char|int)\\)\} $hex <BBB::Class::xyzq\\(char\\)>" \
171 "print 'BBB::Class::xyzq'"
e6d71bf3 172
f8d3bf8f
MS
173gdb_test "print BBB::Class::xyzq" \
174 "\\$\[0-9\]* = \{char \\((BBB::|)Class \\*( const|), (char|int)\\)\} $hex <BBB::Class::xyzq\\(char\\)>" \
175 "print BBB::Class::xyzq"
63d06c5c 176
e6d71bf3
DB
177# Break on a function in a class in a namespace
178
b598bfda 179gdb_test "break BBB::Class::xyzq" \
ceeb3d5a 180 "Breakpoint.*at $hex: file.*namespace.cc, line 68\\."
e6d71bf3 181
41f62f39
JK
182# Tests accessing static elements in namespace of other file.
183
184gdb_test "whatis C::cOtherFileType" "type = short"
185gdb_test "whatis ::C::cOtherFileType" "type = short"
186gdb_test "whatis C::cOtherFileVar" "type = const C::cOtherFileType"
187gdb_test "whatis ::C::cOtherFileVar" "type = const C::cOtherFileType"
188gdb_test "print C::cOtherFileVar" "\\$\[0-9\].* = 319"
189gdb_test "print ::C::cOtherFileVar" "\\$\[0-9\].* = 319"
190
e9ea2662 191if $xfail_class_types { setup_xfail *-*-* }
41f62f39 192gdb_test "whatis C::OtherFileClass::cOtherFileClassType" "type = short"
e9ea2662 193if $xfail_class_types { setup_xfail *-*-* }
41f62f39 194gdb_test "whatis ::C::OtherFileClass::cOtherFileClassType" "type = short"
0a600c36 195gdb_test "print C::OtherFileClass::cOtherFileClassVar" " = 318"
41f62f39
JK
196
197# FSF GCC <=4.4 creates unqualified DIE "cOtherFileClassVar" ignoring the
198# namespace the same way older GDB did.
199set test "print ::cOtherFileClassVar"
200set test2 "print ::C::OtherFileClass::cOtherFileClassVar"
201gdb_test_multiple $test $test {
202 -re "No symbol \"cOtherFileClassVar\" in current context\\.\r\n$gdb_prompt $" {
203 pass $test
204
0a600c36 205 gdb_test $test2 " = 318"
41f62f39
JK
206 }
207 -re "\\$\[0-9\].* = 318\r\n$gdb_prompt $" {
49c3ccf7 208 # Do not permit to XFAIL on recent GCCs.
e9ea2662 209 if $xfail_class_types {
41f62f39 210 setup_xfail *-*-*
49c3ccf7
DE
211 fail $test
212 # Unresolved means human intervention is required to determine
213 # whether the test passed or failed. Since the previous test
214 # xfailed (not failed) human intervention isn't going to help here.
215 # Thus test2 is marked as unsupported instead of unresolved.
216 unsupported $test2
217 } else {
218 fail $test
219 unresolved $test2
41f62f39 220 }
41f62f39
JK
221 }
222}
223
1fcb5155
DC
224# Test to see if the appropriate namespaces are in scope when trying
225# to print out stuff from within a function defined within a
226# namespace.
227
228if ![runto "C::D::marker2"] then {
229 perror "couldn't run to marker2"
230 continue
231}
232
233gdb_test "print c" "\\$\[0-9\].* = 1"
234gdb_test "print cc" "No symbol \"cc\" in current context."
235gdb_test "print 'C::cc'" "\\$\[0-9\].* = 2"
79c2c32d 236gdb_test "print C::cc" "\\$\[0-9\].* = 2"
1fcb5155 237gdb_test "print cd" "\\$\[0-9\].* = 3"
63d06c5c 238gdb_test "print C::D::cd" "No type \"D\" within class or namespace \"C::C\"."
1fcb5155 239gdb_test "print 'E::cde'" "\\$\[0-9\].* = 5"
79c2c32d 240gdb_test "print E::cde" "\\$\[0-9\].* = 5"
1fcb5155 241gdb_test "print shadow" "\\$\[0-9\].* = 13"
79c2c32d 242gdb_test "print E::ce" "No symbol \"ce\" in namespace \"C::D::E\"."
5c4e30ca
DC
243gdb_test "ptype C" "type = namespace C::C"
244gdb_test "ptype E" "type = namespace C::D::E"
1fcb5155 245
c203e0ca
MC
246gdb_test "ptype CClass" "type = (class C::CClass \{\r\n public:|struct C::CClass \{)\r\n int x;\r\n\}"
247gdb_test "ptype CClass::NestedClass" "type = (class C::CClass::NestedClass \{\r\n public:|struct C::CClass::NestedClass \{)\r\n int y;\r\n\}"
63d06c5c 248gdb_test "ptype NestedClass" "No symbol \"NestedClass\" in current context."
63d06c5c 249gdb_test "ptype ::C::CClass" "type = class C::CClass \{\r\n public:\r\n int x;\r\n\}"
63d06c5c 250gdb_test "ptype ::C::CClass::NestedClass" "type = class C::CClass::NestedClass \{\r\n public:\r\n int y;\r\n\}"
63d06c5c
DC
251gdb_test "ptype ::C::NestedClass" "No symbol \"NestedClass\" in namespace \"C\"."
252gdb_test "ptype C::CClass" "No symbol \"CClass\" in namespace \"C::C\"."
253gdb_test "ptype C::CClass::NestedClass" "No type \"CClass\" within class or namespace \"C::C\"."
254gdb_test "ptype C::NestedClass" "No symbol \"NestedClass\" in namespace \"C::C\"."
255
256# Tests involving multiple files
257
258gdb_test "print cOtherFile" "\\$\[0-9\].* = 316"
41f62f39
JK
259gdb_test "ptype OtherFileClass" "type = (class C::OtherFileClass \{\r\n public:|struct C::OtherFileClass \{)\r\n int z;\r\n.*\}"
260gdb_test "ptype ::C::OtherFileClass" "type = class C::OtherFileClass \{\r\n public:\r\n int z;\r\n.*\}"
63d06c5c
DC
261gdb_test "ptype C::OtherFileClass" "No symbol \"OtherFileClass\" in namespace \"C::C\"."
262
98751a41
JK
263# Test class typedefs printing.
264set expect "type = class C::OtherFileClass \{\r\n.*\r\n *typedef short cOtherFileClassType;\r\n *typedef long cOtherFileClassType2;\r\n\}"
e9ea2662 265if $xfail_class_types { setup_xfail *-*-* }
98751a41 266gdb_test "ptype OtherFileClass" $expect "ptype OtherFileClass typedefs"
e9ea2662 267if $xfail_class_types { setup_xfail *-*-* }
98751a41
JK
268gdb_test "ptype ::C::OtherFileClass" $expect "ptype ::C::OtherFileClass typedefs"
269
1fcb5155
DC
270# Some anonymous namespace tests.
271
272gdb_test "print cX" "\\$\[0-9\].* = 6"
273gdb_test "print 'F::cXf'" "\\$\[0-9\].* = 7"
79c2c32d
DC
274gdb_test "print F::cXf" "\\$\[0-9\].* = 7"
275gdb_test "print F::cXfX" "\\$\[0-9\].* = 8"
1fcb5155
DC
276gdb_test "print X" "\\$\[0-9\].* = 9"
277gdb_test "print 'G::Xg'" "\\$\[0-9\].* = 10"
79c2c32d
DC
278gdb_test "print G::Xg" "\\$\[0-9\].* = 10"
279gdb_test "print G::XgX" "\\$\[0-9\].* = 11"
1fcb5155
DC
280gdb_test "print cXOtherFile" "No symbol \"cXOtherFile\" in current context."
281gdb_test "print XOtherFile" "No symbol \"XOtherFile\" in current context."
ceeb3d5a
TT
282
283# Enum tests.
284gdb_test "print AAA::ALPHA" "\\$\[0-9\].* = AAA::ALPHA"
48e32051
TT
285
286# Regression tests for PR 9496.
287gdb_test "whatis ::C::CClass::NestedClass" "type = C::CClass::NestedClass"
288gdb_test "whatis ::C::CClass::NestedClass *" "type = C::CClass::NestedClass \\*"
This page took 1.158623 seconds and 4 git commands to generate.