merge from gcc
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / cpcompletion.exp
CommitLineData
7b6bb8da 1# Copyright 2009, 2010, 2011 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 $tracelevel then {
53 strace $tracelevel
54}
55
56if { [skip_cplus_tests] } { continue }
57
52e44b43 58set testfile pr9594
1c71341a
TT
59set binfile ${objdir}/${subdir}/${testfile}
60
61if {[gdb_compile "${srcdir}/${subdir}/${testfile}.cc" "${testfile}.o" object {c++ debug}] != ""} {
62 untested cpcompletion.exp
63 return -1
64}
65
66if {[gdb_compile "${testfile}.o" ${binfile} executable {c++ debug}] != "" } {
67 untested cpcompletion.exp
68 return -1
69}
70
71gdb_exit
72
1c71341a
TT
73gdb_start
74gdb_reinitialize_dir $srcdir/$subdir
75gdb_load ${binfile}
76
77set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
78
7c5fe868 79if {![runto "${testfile}.cc:$bp_location"]} {
1c71341a 80 perror "test suppressed"
7c5fe868 81 return
1c71341a
TT
82}
83
84# This also tests inheritance -- completion should only see a single
85# "get_foo".
86gdb_test "complete p foo1.g" "p foo1\\.get_foo"
87
88# Test inheritance without overriding.
89gdb_test "complete p foo1.base" "p foo1\\.base_function_only"
90
91# Test non-completion of constructor names.
92gdb_test "complete p foo1.Fo" "p foo1\\.Foofoo"
93
94# Test completion with an anonymous struct.
95gdb_test "complete p a.g" "p a\\.get"
676accff
KS
96
97# Test that completion is restricted by class name (all methods)
98test_class_complete Foo "" "complete class methods" \
99 [list Foo Foofoo get_foo set_foo ~Foo]
100
101test_class_complete Foo F "complete class methods beginning with F" \
102 [list Foo Foofoo]
103
This page took 0.280058 seconds and 4 git commands to generate.