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