2012-01-04 08:17:56 +00:00
|
|
|
# Copyright 2003, 2007-2012 Free Software Foundation, Inc.
|
2003-01-03 20:55:46 +00:00
|
|
|
|
|
|
|
# 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
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2003-01-03 20:55:46 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2003-01-03 20:55:46 +00:00
|
|
|
# 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.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2003-01-03 20:55:46 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-01-03 20:55:46 +00:00
|
|
|
|
|
|
|
# This file is part of the gdb testsuite
|
|
|
|
|
|
|
|
# This is intended to be a repository for tests that partial symbols
|
|
|
|
# are working properly. If multiple tests are added, make sure that
|
|
|
|
# you exit and restart GDB between tests.
|
|
|
|
|
|
|
|
#
|
|
|
|
# test running programs
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
if { [skip_cplus_tests] } { continue }
|
|
|
|
|
|
|
|
set testfile "psymtab"
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${testfile}1.c" "${testfile}1.o" object {debug}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested psymtab.exp
|
|
|
|
return -1
|
2003-01-03 20:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${testfile}2.c" "${testfile}2.o" object {debug}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested psymtab.exp
|
|
|
|
return -1
|
2003-01-03 20:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [gdb_compile "${testfile}1.o ${testfile}2.o" ${binfile} executable {debug}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested psymtab.exp
|
|
|
|
return -1
|
2003-01-03 20:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Create and source the file that provides information about the compiler
|
|
|
|
# used to compile the test case.
|
2012-06-21 20:46:25 +00:00
|
|
|
if [get_compiler_info] {
|
2003-01-03 20:55:46 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
2009-06-26 16:08:20 +00:00
|
|
|
# Disable the prompt for whether to set pending breakpoints.
|
|
|
|
# We don't want a breakpoint, we just want to verify the symbol
|
|
|
|
# isn't found.
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "set breakpoint pending off" "psymtab pending setup"
|
2009-06-26 16:08:20 +00:00
|
|
|
|
2003-01-03 20:55:46 +00:00
|
|
|
# This test is looking for a bug that manifested itself when GDB was
|
|
|
|
# looking for a partial symbol such that there wasn't such a partial
|
|
|
|
# symbol in the psymtab, but such that the last psym in the psymtab
|
|
|
|
# had the right name but the wrong namespace. Here, searching for
|
|
|
|
# zzz::dummy currently causes a search for 'zzz' in STRUCT_NAMESPACE
|
|
|
|
# without a preceding search for 'zzz' in VAR_NAMESPACE.
|
|
|
|
|
2011-07-01 20:16:39 +00:00
|
|
|
gdb_test "break zzz::dummy" {Function "zzz::dummy" not defined\.} "Don't search past end of psymtab."
|