PR gold/14309
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / namespace-enum.exp
CommitLineData
0b302171 1# Copyright 2011-2012 Free Software Foundation, Inc.
9c6c53f7
SA
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
16set testfile namespace-enum
17set srcfile0 ${testfile}.cc
18set objfile0 ${testfile}.o
19set srcfile1 ${testfile}-main.cc
20set objfile1 ${testfile}-main.o
9ec72168
JK
21set executable ${testfile}
22set binfile ${objdir}/${subdir}/${executable}
9c6c53f7
SA
23
24if { [gdb_compile "$srcdir/$subdir/$srcfile0" "$objdir/$subdir/$objfile0" object {debug c++}] != "" } {
25 untested namespace-enum.exp
26 return -1
27}
28
29if { [gdb_compile "$srcdir/$subdir/$srcfile1" "$objdir/$subdir/$objfile1" object {debug c++}] != "" } {
30 untested namespace-enum.exp
31 return -1
32}
33
34if { [gdb_compile "$objdir/$subdir/$objfile0 $objdir/$subdir/$objfile1" "${binfile}" executable {debug c++}] != "" } {
35 untested namespace-enum.exp
36 return -1
37}
38
9ec72168 39clean_restart ${executable}
9c6c53f7
SA
40gdb_test "print foo::B::B_B" "`foo::B' is not defined as an aggregate type."
41gdb_test "print foo::B_B" "foo::B_B"
42gdb_test "print A_A" "A_A"
43
This page took 0.126191 seconds and 4 git commands to generate.