gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / namespace.exp
CommitLineData
4c38e0a4 1# Copyright 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009, 2010
d231d0b1 2# Free Software Foundation, 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
28if $tracelevel then {
29 strace $tracelevel
30 }
31
e6d71bf3 32
fc33412a 33if { [skip_cplus_tests] } { continue }
e6d71bf3
DB
34
35set testfile "namespace"
36set srcfile ${testfile}.cc
1fcb5155
DC
37set objfile ${objdir}/${subdir}/${testfile}.o
38set srcfile1 ${testfile}1.cc
39set objfile1 ${objdir}/${subdir}/${testfile}1.o
e6d71bf3
DB
40set binfile ${objdir}/${subdir}/${testfile}
41
753ccc7a 42if [get_compiler_info ${binfile} c++] {
e6d71bf3
DB
43 return -1;
44}
45
1fcb5155 46if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug c++}] != "" } {
b60f0898
JB
47 untested namespace.exp
48 return -1
e6d71bf3
DB
49}
50
1fcb5155 51if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${objfile1}" object {debug c++}] != "" } {
b60f0898
JB
52 untested namespace.exp
53 return -1
1fcb5155 54}
e6d71bf3 55
1fcb5155 56if { [gdb_compile "${objfile} ${objfile1}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
57 untested namespace.exp
58 return -1
1fcb5155 59}
e6d71bf3
DB
60
61gdb_exit
62gdb_start
63gdb_reinitialize_dir $srcdir/$subdir
64gdb_load ${binfile}
65
66
67#
68# set it up at a breakpoint so we can play with the variable values
69#
70if ![runto_main] then {
71 perror "couldn't run to breakpoint"
72 continue
73}
74
db144853
MC
75if ![runto 'marker1'] then {
76 perror "couldn't run to marker1"
77 continue
78}
79
80gdb_test "up" ".*main.*" "up from marker1"
e6d71bf3
DB
81
82# Access a data item inside a namespace using colons and
63d06c5c 83# single quotes. :-(
e6d71bf3 84
79c2c32d
DC
85# NOTE: carlton/2003-09-24: the quotes are becoming less necessary (or
86# even desirable.) For tests where it should still work with quotes,
87# I'm including versions both with and without quotes; for tests that
88# shouldn't work with quotes, I'm only including one version.
89
f8d3bf8f
MS
90gdb_test "print 'AAA::c'" \
91 "\\$\[0-9\]* = 0 '\\\\(0|000)'" \
92 "print 'AAA::c'"
e6d71bf3 93
f8d3bf8f
MS
94gdb_test "print AAA::c" \
95 "\\$\[0-9\]* = 0 '\\\\(0|000)'" \
96 "print AAA::c"
79c2c32d 97
e6d71bf3
DB
98# An object declared using "using".
99
f8d3bf8f 100gdb_test "print ina" "\\$\[0-9\]+ = {xx = 33}"
e6d71bf3 101
f8d3bf8f
MS
102gdb_test_multiple "ptype ina" "ptype ina" {
103 -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 $" {
104 pass "ptype ina"
105 }
106 -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 $" {
107 pass "ptype ina"
108 }
e6d71bf3
DB
109}
110
111# Check all functions are known to GDB
112
113setup_xfail hppa*-*-*11* CLLbs14869
f8d3bf8f
MS
114gdb_test_multiple "info func xyzq" "info func xyzq" {
115 -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 $" {
116 pass "info func xyzq"
117 }
118 -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 $" {
119 pass "info func xyzq"
120 }
e6d71bf3
DB
121}
122
123# Call a function in a namespace
124
f8d3bf8f
MS
125gdb_test "print 'AAA::xyzq'('x')" \
126 "\\$\[0-9\]* = 97 'a'" \
127 "print 'AAA::xyzq'('x')"
128
129gdb_test "print AAA::xyzq('x')" \
130 "\\$\[0-9\]* = 97 'a'" \
131 "print AAA::xyzq('x')"
79c2c32d 132
e6d71bf3
DB
133# Break on a function in a namespace
134
b598bfda 135gdb_test "break AAA::xyzq" \
ceeb3d5a 136 "Breakpoint.*at $hex: file.*namespace.cc, line 47\\."
e6d71bf3
DB
137
138# Call a function in a nested namespace
139
f8d3bf8f
MS
140gdb_test "print 'BBB::CCC::xyzq'('x')" \
141 "\\$\[0-9\]* = 122 'z'" \
142 "print 'BBB::CCC::xyzq'('x')"
143
144gdb_test "print BBB::CCC::xyzq('x')" \
145 "\\$\[0-9\]* = 122 'z'" \
146 "print BBB::CCC::xyzq('x')"
79c2c32d 147
e6d71bf3
DB
148# Break on a function in a nested namespace
149
b598bfda 150gdb_test "break BBB::CCC::xyzq" \
ceeb3d5a 151 "Breakpoint.*at $hex: file.*namespace.cc, line 63\\."
e6d71bf3
DB
152
153# Print address of a function in a class in a namespace
154
f8d3bf8f
MS
155gdb_test "print 'BBB::Class::xyzq'" \
156 "\\$\[0-9\]* = \{char \\((BBB::|)Class \\*( const|), (char|int)\\)\} $hex <BBB::Class::xyzq\\(char\\)>" \
157 "print 'BBB::Class::xyzq'"
e6d71bf3 158
f8d3bf8f
MS
159gdb_test "print BBB::Class::xyzq" \
160 "\\$\[0-9\]* = \{char \\((BBB::|)Class \\*( const|), (char|int)\\)\} $hex <BBB::Class::xyzq\\(char\\)>" \
161 "print BBB::Class::xyzq"
63d06c5c 162
e6d71bf3
DB
163# Break on a function in a class in a namespace
164
b598bfda 165gdb_test "break BBB::Class::xyzq" \
ceeb3d5a 166 "Breakpoint.*at $hex: file.*namespace.cc, line 68\\."
e6d71bf3 167
1fcb5155
DC
168# Test to see if the appropriate namespaces are in scope when trying
169# to print out stuff from within a function defined within a
170# namespace.
171
172if ![runto "C::D::marker2"] then {
173 perror "couldn't run to marker2"
174 continue
175}
176
177gdb_test "print c" "\\$\[0-9\].* = 1"
178gdb_test "print cc" "No symbol \"cc\" in current context."
179gdb_test "print 'C::cc'" "\\$\[0-9\].* = 2"
79c2c32d 180gdb_test "print C::cc" "\\$\[0-9\].* = 2"
1fcb5155 181gdb_test "print cd" "\\$\[0-9\].* = 3"
63d06c5c 182gdb_test "print C::D::cd" "No type \"D\" within class or namespace \"C::C\"."
1fcb5155 183gdb_test "print 'E::cde'" "\\$\[0-9\].* = 5"
79c2c32d 184gdb_test "print E::cde" "\\$\[0-9\].* = 5"
1fcb5155 185gdb_test "print shadow" "\\$\[0-9\].* = 13"
79c2c32d 186gdb_test "print E::ce" "No symbol \"ce\" in namespace \"C::D::E\"."
5c4e30ca
DC
187gdb_test "ptype C" "type = namespace C::C"
188gdb_test "ptype E" "type = namespace C::D::E"
1fcb5155 189
c203e0ca
MC
190gdb_test "ptype CClass" "type = (class C::CClass \{\r\n public:|struct C::CClass \{)\r\n int x;\r\n\}"
191gdb_test "ptype CClass::NestedClass" "type = (class C::CClass::NestedClass \{\r\n public:|struct C::CClass::NestedClass \{)\r\n int y;\r\n\}"
63d06c5c 192gdb_test "ptype NestedClass" "No symbol \"NestedClass\" in current context."
63d06c5c 193gdb_test "ptype ::C::CClass" "type = class C::CClass \{\r\n public:\r\n int x;\r\n\}"
63d06c5c 194gdb_test "ptype ::C::CClass::NestedClass" "type = class C::CClass::NestedClass \{\r\n public:\r\n int y;\r\n\}"
63d06c5c
DC
195gdb_test "ptype ::C::NestedClass" "No symbol \"NestedClass\" in namespace \"C\"."
196gdb_test "ptype C::CClass" "No symbol \"CClass\" in namespace \"C::C\"."
197gdb_test "ptype C::CClass::NestedClass" "No type \"CClass\" within class or namespace \"C::C\"."
198gdb_test "ptype C::NestedClass" "No symbol \"NestedClass\" in namespace \"C::C\"."
199
200# Tests involving multiple files
201
202gdb_test "print cOtherFile" "\\$\[0-9\].* = 316"
c203e0ca 203gdb_test "ptype OtherFileClass" "type = (class C::OtherFileClass \{\r\n public:|struct C::OtherFileClass \{)\r\n int z;\r\n\}"
63d06c5c
DC
204gdb_test "ptype ::C::OtherFileClass" "type = class C::OtherFileClass \{\r\n public:\r\n int z;\r\n\}"
205gdb_test "ptype C::OtherFileClass" "No symbol \"OtherFileClass\" in namespace \"C::C\"."
206
1fcb5155
DC
207# Some anonymous namespace tests.
208
209gdb_test "print cX" "\\$\[0-9\].* = 6"
210gdb_test "print 'F::cXf'" "\\$\[0-9\].* = 7"
79c2c32d
DC
211gdb_test "print F::cXf" "\\$\[0-9\].* = 7"
212gdb_test "print F::cXfX" "\\$\[0-9\].* = 8"
1fcb5155
DC
213gdb_test "print X" "\\$\[0-9\].* = 9"
214gdb_test "print 'G::Xg'" "\\$\[0-9\].* = 10"
79c2c32d
DC
215gdb_test "print G::Xg" "\\$\[0-9\].* = 10"
216gdb_test "print G::XgX" "\\$\[0-9\].* = 11"
1fcb5155
DC
217gdb_test "print cXOtherFile" "No symbol \"cXOtherFile\" in current context."
218gdb_test "print XOtherFile" "No symbol \"XOtherFile\" in current context."
ceeb3d5a
TT
219
220# Enum tests.
221gdb_test "print AAA::ALPHA" "\\$\[0-9\].* = AAA::ALPHA"
48e32051
TT
222
223# Regression tests for PR 9496.
224gdb_test "whatis ::C::CClass::NestedClass" "type = C::CClass::NestedClass"
225gdb_test "whatis ::C::CClass::NestedClass *" "type = C::CClass::NestedClass \\*"
This page took 1.030995 seconds and 4 git commands to generate.