gdb/doc/
[external/binutils.git] / gdb / testsuite / gdb.cp / static-method.exp
1 # Copyright 2011 Free Software Foundation, Inc.
2 #
3 # Contributed by Red Hat, originally written by Keith Seitz.
4 #
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.
9 #
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.
14 #
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/>.
17
18 # This file is part of the gdb testsuite.
19
20 # A helper proc which sets a breakpoint at FUNC and attempts to
21 # run to the breakpoint.
22 proc test_breakpoint {func result} {
23     set DEC {[0-9]}
24
25     # Return to the top of the test function every time.
26     delete_breakpoints
27     if {![gdb_breakpoint test_function]} {
28         fail "set test_function breakpoint for $func"
29     } elseif {[gdb_test "continue" \
30                    "Continuing.\r\n\r\nBreakpoint $DEC+,.*test_function.*" \
31                    ""] != 0} {
32         fail "continue to test_function for $func"
33     } else {
34         gdb_breakpoint "$func"
35         gdb_test "continue" \
36             "Continuing.\r\n\r\nBreakpoint $DEC+,.*$result.*" \
37             "continue to $func"
38     }
39 }
40
41 if {[skip_cplus_tests]} { continue }
42
43 # Tests for c++/12750
44 set testfile "static-method"
45 set srcfile $testfile.cc
46
47 if {[prepare_for_testing $testfile $testfile $srcfile {c++ debug}]} {
48     return -1
49 }
50
51 # The GDB workaround for GCC PR debug/45682 does not apply as it requires
52 # DW_AT_linkage_name of methods.  The whole class A is in anonymous namespace,
53 # therefore not accessible outside of the CU (compilation unit) and therefore
54 # GCC does not produce DW_AT_linkage_name for such methods.
55
56 set have_gcc_45682_fixed 1
57 set test "info addr A::func()"
58 gdb_test_multiple $test $test {
59     -re "No symbol \"A::func\\(\\)\" in current context\\.\r\n$gdb_prompt $" {
60         pass $test
61     }
62     -re "Symbol \"A::func\\(\\)\" is a function at address .*\r\n$gdb_prompt $" {
63         setup_xfail gcc/45682 "*-*-*"
64         fail $test
65         set have_gcc_45682_fixed 0
66     }
67 }
68
69 if {![runto_main]} {
70     perror "couldn't run to breakpoint"
71     continue
72 }
73
74 set ans {(anonymous namespace)}
75 set methods {}
76 lappend methods "xxx::${ans}::func"
77 lappend methods "xxx::${ans}::A::func"
78
79 gdb_test_no_output "set listsize 1" ""
80
81 foreach test $methods {
82     # The result we expect is the source code name of the symbol,
83     # i.e., without "(anonymous namespace)".
84     regsub -all [string_to_regexp "${ans}::"] $test "" expected
85     set result ".*// [string_to_regexp $expected]"
86
87     # Test whether the function/method can be "list"ed
88     # with the filename pre-pended.
89     if {[string compare $test "xxx::${ans}::A::func"] == 0
90         && !$have_gcc_45682_fixed} {
91         setup_xfail gcc/45682 "*-*-*"
92     }
93     gdb_test "list ${srcfile}:$test" $result
94     if {[string compare $test "xxx::${ans}::A::func"] == 0
95         && !$have_gcc_45682_fixed} {
96         setup_xfail gcc/45682 "*-*-*"
97     }
98     gdb_test "list '${srcfile}:$test'" $result
99     if {[string compare $test "xxx::${ans}::A::func"] == 0
100         && !$have_gcc_45682_fixed} {
101         setup_xfail gcc/45682 "*-*-*"
102     }
103     gdb_test "list '${srcfile}':'$test'" $result
104     if {[string compare $test "xxx::${ans}::A::func"] == 0
105         && !$have_gcc_45682_fixed} {
106         setup_xfail gcc/45682 "*-*-*"
107     }
108     gdb_test "list ${srcfile}:'$test'" $result
109
110     # Test setting and hitting a breakoint at the function/method.
111     test_breakpoint $test $expected
112     test_breakpoint "'$test'" $expected
113 }
114
115 gdb_exit
116 return 0