daily update
[external/binutils.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 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
40 # the test results.  Even if /dev/null doesn't exist on the particular
41 # platform, the readline library will use the default setting just by
42 # failing to open the file.  OTOH, opening /dev/null successfully will
43 # also result in the default settings being used since nothing will be
44 # read from this file.
45 global env
46 if [info exists env(INPUTRC)] {
47     set old_inputrc $env(INPUTRC)
48 }
49 set env(INPUTRC) "/dev/null"
50
51 gdb_start
52 gdb_reinitialize_dir $srcdir/$subdir
53 gdb_load ${binfile}
54
55 set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
56
57 if {![runto $bp_location]} {
58     perror "test suppressed"
59 }
60
61 # This also tests inheritance -- completion should only see a single
62 # "get_foo".
63 gdb_test "complete p foo1.g" "p foo1\\.get_foo"
64
65 # Test inheritance without overriding.
66 gdb_test "complete p foo1.base" "p foo1\\.base_function_only"
67
68 # Test non-completion of constructor names.
69 gdb_test "complete p foo1.Fo" "p foo1\\.Foofoo"
70
71 # Test completion with an anonymous struct.
72 gdb_test "complete p a.g" "p a\\.get"