Fix gdb.base/macscp.exp when using custom inputrc. * gdb.base/completion.exp: Remove env(INPUTRC) set and restore. * gdb.base/readline.exp: Remove env(INPUTRC) set and restore. Remove env(TERM) set. * gdb.cp/cpcompletion.exp: Remove env(INPUTRC) set. * lib/gdb.exp (default_gdb_start): Add env(INPUTRC) and env(TERM) set.
61 lines
1.7 KiB
Plaintext
61 lines
1.7 KiB
Plaintext
# Copyright 2009 Free Software Foundation, Inc.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This file is part of the gdb testsuite.
|
|
|
|
if $tracelevel then {
|
|
strace $tracelevel
|
|
}
|
|
|
|
if { [skip_cplus_tests] } { continue }
|
|
|
|
set testfile pr9594
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
if {[gdb_compile "${srcdir}/${subdir}/${testfile}.cc" "${testfile}.o" object {c++ debug}] != ""} {
|
|
untested cpcompletion.exp
|
|
return -1
|
|
}
|
|
|
|
if {[gdb_compile "${testfile}.o" ${binfile} executable {c++ debug}] != "" } {
|
|
untested cpcompletion.exp
|
|
return -1
|
|
}
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
gdb_load ${binfile}
|
|
|
|
set bp_location [gdb_get_line_number "Set breakpoint here" ${testfile}.cc]
|
|
|
|
if {![runto $bp_location]} {
|
|
perror "test suppressed"
|
|
}
|
|
|
|
# This also tests inheritance -- completion should only see a single
|
|
# "get_foo".
|
|
gdb_test "complete p foo1.g" "p foo1\\.get_foo"
|
|
|
|
# Test inheritance without overriding.
|
|
gdb_test "complete p foo1.base" "p foo1\\.base_function_only"
|
|
|
|
# Test non-completion of constructor names.
|
|
gdb_test "complete p foo1.Fo" "p foo1\\.Foofoo"
|
|
|
|
# Test completion with an anonymous struct.
|
|
gdb_test "complete p a.g" "p a\\.get"
|