gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / cpcompletion.exp
CommitLineData
1c71341a
TT
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
18if $tracelevel then {
19 strace $tracelevel
20}
21
22if { [skip_cplus_tests] } { continue }
23
52e44b43 24set testfile pr9594
1c71341a
TT
25set binfile ${objdir}/${subdir}/${testfile}
26
27if {[gdb_compile "${srcdir}/${subdir}/${testfile}.cc" "${testfile}.o" object {c++ debug}] != ""} {
28 untested cpcompletion.exp
29 return -1
30}
31
32if {[gdb_compile "${testfile}.o" ${binfile} executable {c++ debug}] != "" } {
33 untested cpcompletion.exp
34 return -1
35}
36
37gdb_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.
45global env
46if [info exists env(INPUTRC)] {
47 set old_inputrc $env(INPUTRC)
48}
49set env(INPUTRC) "/dev/null"
50
51gdb_start
52gdb_reinitialize_dir $srcdir/$subdir
53gdb_load ${binfile}
54
55set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
56
57if {![runto $bp_location]} {
58 perror "test suppressed"
59}
60
61# This also tests inheritance -- completion should only see a single
62# "get_foo".
63gdb_test "complete p foo1.g" "p foo1\\.get_foo"
64
65# Test inheritance without overriding.
66gdb_test "complete p foo1.base" "p foo1\\.base_function_only"
67
68# Test non-completion of constructor names.
69gdb_test "complete p foo1.Fo" "p foo1\\.Foofoo"
70
71# Test completion with an anonymous struct.
72gdb_test "complete p a.g" "p a\\.get"
This page took 0.048319 seconds and 4 git commands to generate.