]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/gdb2384.exp
update copyright year range in GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / gdb2384.exp
CommitLineData
61baf725 1# Copyright 2007-2017 Free Software Foundation, Inc.
81fe8080
DE
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# When gdb resolves type information for class "derived" from objfile
17# gdb2384, it use to fill in the TYPE_VPTR_BASETYPE field with class "base"
18# from objfile gdb2384-base.so. When the program is rerun the type
19# information for base-in-so-base.so is discarded leaving
20# TYPE_VPTR_BASETYPE dangling.
02e7ea18
JB
21#
22# PR c++/9489.
81fe8080 23
81fe8080
DE
24if { [skip_cplus_tests] } { continue }
25if { [skip_shlib_tests] } { continue }
26
f5f3a911 27standard_testfile .cc gdb2384-base.cc
81fe8080 28
f5f3a911 29set sofile [standard_output_file gdb2384-base.so]
81fe8080
DE
30
31# Create and source the file that provides information about the compiler
32# used to compile the test case.
4c93b1db 33if [get_compiler_info "c++"] {
81fe8080
DE
34 return -1
35}
36
f5f3a911 37if { [gdb_compile_shlib $srcdir/$subdir/$srcfile2 $sofile {debug c++}] != ""
81fe8080 38 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug "c++" shlib=${sofile}]] != ""} {
84c93cd5 39 untested "failed to compile"
81fe8080
DE
40 return -1
41}
42
f5f3a911 43clean_restart ${binfile}
d9019901 44gdb_load_shlib ${sofile}
81fe8080 45
4fc5b208
PP
46
47if ![runto_main] then {
48 perror "couldn't run to breakpoint"
49 return -1
81fe8080
DE
50}
51
4fc5b208
PP
52gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
53gdb_continue_to_breakpoint "set breakpoint here"
54
55gdb_test "print d1.meth ()" \
81fe8080 56 ".*42.*" \
4fc5b208 57 "print d1.meth ()"
81fe8080
DE
58
59# Now try again. gdb's without the fix will hopefully segv here
60
4fc5b208
PP
61runto_main
62gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
63gdb_continue_to_breakpoint "set breakpoint here"
64gdb_test "print d1.meth ()" \
81fe8080
DE
65 ".*42.*" \
66 "gdb2384"
4fc5b208
PP
67
68# second case
69
70runto_main
71gdb_breakpoint [gdb_get_line_number "set breakpoint here (second)"]
72gdb_continue_to_breakpoint "set breakpoint here (second)"
73gdb_test "print d2.meth ()" \
74 ".*24.*" \
75 "print d2.meth()"
76
77runto_main
78gdb_breakpoint [gdb_get_line_number "set breakpoint here (second)"]
79gdb_continue_to_breakpoint "set breakpoint here (second)"
80gdb_test "print d2.meth ()" \
81 ".*24.*" \
82 "gdb2384 (second)"
83