PR gold/14309
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / cpcompletion.exp
CommitLineData
0b302171 1# Copyright 2009-2012 Free Software Foundation, Inc.
1c71341a
TT
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# This file is part of the gdb testsuite.
17
676accff
KS
18# A helper procedure to test location completions restricted by
19# class.
20proc test_class_complete {class expr name matches} {
21 global gdb_prompt
22
23 set matches [lsort $matches]
24 set cmd "complete break ${class}::$expr"
25 set seen {}
26 gdb_test_multiple $cmd $name {
27 "break ${class}::main" { fail "$name (saw global symbol)" }
28 $cmd { exp_continue }
29 -re "break ${class}::\[A-Za-z0-9_~\]+" {
30 set str $expect_out(0,string)
31 scan $str "break ${class}::%\[^(\]" method
32 lappend seen $method
33 exp_continue
34 }
35 -re "$gdb_prompt $" {
36 set failed ""
37 foreach got [lsort $seen] have $matches {
38 if {![string equal $got $have]} {
39 set failed $have
40 break
41 }
42 }
43 if {[string length $failed] != 0} {
44 fail "$name ($failed not found)"
45 } else {
46 pass $name
47 }
48 }
49 }
50}
51
1c71341a
TT
52if { [skip_cplus_tests] } { continue }
53
52e44b43 54set testfile pr9594
1c71341a
TT
55set binfile ${objdir}/${subdir}/${testfile}
56
57if {[gdb_compile "${srcdir}/${subdir}/${testfile}.cc" "${testfile}.o" object {c++ debug}] != ""} {
58 untested cpcompletion.exp
59 return -1
60}
61
62if {[gdb_compile "${testfile}.o" ${binfile} executable {c++ debug}] != "" } {
63 untested cpcompletion.exp
64 return -1
65}
66
67gdb_exit
68
1c71341a
TT
69gdb_start
70gdb_reinitialize_dir $srcdir/$subdir
71gdb_load ${binfile}
72
7b08b9eb
JK
73# Test that completion is restricted by class name (all methods)
74test_class_complete Foo "" "complete class methods" \
75 [list Foo Foofoo get_foo set_foo ~Foo]
76
77test_class_complete Foo F "complete class methods beginning with F" \
78 [list Foo Foofoo]
79
80# The tests below depend on the current code scope.
81
1c71341a
TT
82set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
83
7c5fe868 84if {![runto "${testfile}.cc:$bp_location"]} {
1c71341a 85 perror "test suppressed"
7c5fe868 86 return
1c71341a
TT
87}
88
89# This also tests inheritance -- completion should only see a single
90# "get_foo".
91gdb_test "complete p foo1.g" "p foo1\\.get_foo"
92
93# Test inheritance without overriding.
94gdb_test "complete p foo1.base" "p foo1\\.base_function_only"
95
96# Test non-completion of constructor names.
97gdb_test "complete p foo1.Fo" "p foo1\\.Foofoo"
98
99# Test completion with an anonymous struct.
100gdb_test "complete p a.g" "p a\\.get"
This page took 0.639056 seconds and 4 git commands to generate.