gdb/testsuite/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / cpcompletion.exp
1 # Copyright 2009 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 # This file is part of the gdb testsuite.
17
18 if $tracelevel then {
19 strace $tracelevel
20 }
21
22 if { [skip_cplus_tests] } { continue }
23
24 set testfile pr9594
25 set binfile ${objdir}/${subdir}/${testfile}
26
27 if {[gdb_compile "${srcdir}/${subdir}/${testfile}.cc" "${testfile}.o" object {c++ debug}] != ""} {
28 untested cpcompletion.exp
29 return -1
30 }
31
32 if {[gdb_compile "${testfile}.o" ${binfile} executable {c++ debug}] != "" } {
33 untested cpcompletion.exp
34 return -1
35 }
36
37 gdb_exit
38
39 gdb_start
40 gdb_reinitialize_dir $srcdir/$subdir
41 gdb_load ${binfile}
42
43 set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
44
45 if {![runto $bp_location]} {
46 perror "test suppressed"
47 }
48
49 # This also tests inheritance -- completion should only see a single
50 # "get_foo".
51 gdb_test "complete p foo1.g" "p foo1\\.get_foo"
52
53 # Test inheritance without overriding.
54 gdb_test "complete p foo1.base" "p foo1\\.base_function_only"
55
56 # Test non-completion of constructor names.
57 gdb_test "complete p foo1.Fo" "p foo1\\.Foofoo"
58
59 # Test completion with an anonymous struct.
60 gdb_test "complete p a.g" "p a\\.get"
This page took 0.032008 seconds and 5 git commands to generate.