1 # Copyright 2011-2019 Free Software Foundation, Inc.
3 # Contributed by Red Hat, originally written by Keith Seitz.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # This file is part of the gdb testsuite.
20 if {[skip_cplus_tests]} { continue }
22 standard_testfile .cc anon-ns2.cc
24 if {[prepare_for_testing "failed to prepare" $testfile "$srcfile $srcfile2" {c++ debug}]} {
29 perror "couldn't run to breakpoint"
33 set ans {(anonymous namespace)}
34 set types {"void" "int" "char *"}
37 lappend methods "${ans}::doit1($t)"
38 lappend methods "${ans}::one::one($t)"
39 lappend methods "${ans}::A::doit2($t)"
40 lappend methods "${ans}::A::two::two($t)"
41 lappend methods "${ans}::A::${ans}::${ans}::doit3($t)"
42 lappend methods "${ans}::A::${ans}::${ans}::three::three($t)"
45 lappend methods "${ans}::one::doit(void)"
46 lappend methods "${ans}::A::two::doit(void)"
47 lappend methods "${ans}::A::${ans}::${ans}::three::doit(void)"
49 gdb_test_no_output "set listsize 1" ""
51 foreach test $methods {
52 # The result we expect is the source code name of the symbol,
53 # i.e., without "(anonymous namespace)".
54 regsub -all [string_to_regexp "${ans}::"] $test "" expected
55 set result ".*// [string_to_regexp $expected]"
57 gdb_test "list $test" $result
58 gdb_test "list '$test'" $result
59 if {[gdb_breakpoint $test]} {
62 if {[gdb_breakpoint '$test']} {
68 gdb_test "ptype '(anonymous namespace)'" \
69 "type = namespace \\\(anonymous namespace\\\)"