1# Copyright 2003, 2007 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# Please email any bugs, comments, and/or additions to this file to:
17# bug-gdb@prep.ai.mit.edu
18
19# This file is part of the gdb testsuite
20
21# This is intended to be a repository for tests that partial symbols
22# are working properly.  If multiple tests are added, make sure that
23# you exit and restart GDB between tests.
24
25if $tracelevel then {
26    strace $tracelevel
27}
28
29#
30# test running programs
31#
32
33set prms_id 0
34set bug_id 0
35
36if { [skip_cplus_tests] } { continue }
37
38set testfile "psymtab"
39set binfile ${objdir}/${subdir}/${testfile}
40
41if  { [gdb_compile "${srcdir}/${subdir}/${testfile}1.c" "${testfile}1.o" object {debug}] != "" } {
42     untested psymtab.exp
43     return -1
44}
45
46if  { [gdb_compile "${srcdir}/${subdir}/${testfile}2.c" "${testfile}2.o" object {debug}] != "" } {
47     untested psymtab.exp
48     return -1
49}
50
51if  { [gdb_compile "${testfile}1.o ${testfile}2.o" ${binfile} executable {debug}] != "" } {
52     untested psymtab.exp
53     return -1
54}
55
56# Create and source the file that provides information about the compiler
57# used to compile the test case.
58if [get_compiler_info ${binfile}] {
59    return -1;
60}
61
62gdb_exit
63gdb_start
64gdb_reinitialize_dir $srcdir/$subdir
65gdb_load ${binfile}
66
67# This test is looking for a bug that manifested itself when GDB was
68# looking for a partial symbol such that there wasn't such a partial
69# symbol in the psymtab, but such that the last psym in the psymtab
70# had the right name but the wrong namespace.  Here, searching for
71# zzz::dummy currently causes a search for 'zzz' in STRUCT_NAMESPACE
72# without a preceding search for 'zzz' in VAR_NAMESPACE.
73
74gdb_test "break zzz::dummy" "Can't find member of namespace, class, struct, or union named \"zzz::dummy\"\r\n.*" "Don't search past end of psymtab."
75