Fix derived class overload problem.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / re-set-overloaded.exp
CommitLineData
359cc68c
JK
1# Copyright 2010 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
16if { [skip_cplus_tests] } { continue }
17if { [skip_shlib_tests] } { continue }
18
19set testfile re-set-overloaded
20set srcfile bool.cc
21set executable $testfile
22set binfile $objdir/$subdir/$executable
23
24set libsrcfile ${testfile}.cc
25set sofile $objdir/$subdir/${testfile}.so
26
27# Create and source the file that provides information about the compiler
28# used to compile the test case.
29if [get_compiler_info ${binfile} "c++"] {
30 return -1
31}
32
33if { [gdb_compile_shlib $srcdir/$subdir/$libsrcfile $sofile {debug c++}] != ""
34 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug "c++" shlib=${sofile}]] != ""} {
35 untested ${testfile}.exp
36 return -1
37}
38
39clean_restart $executable
40gdb_load_shlibs ${sofile}
41
42gdb_test_no_output "set breakpoint pending yes"
43gdb_test "break C::C" {Breakpoint [0-9]+ \(C::C\) pending\.} "break C::C"
44gdb_test_no_output {set variable $brk = $bpnum}
45
46# runto or runto_main would call delete_breakpoints.
47gdb_breakpoint "main"
48gdb_run_cmd
49setup_kfail breakpoints/11657 *-*-*
50gdb_test "" ".*" "start"
51
52set test "breakpoint resolved"
53gdb_test_multiple {info breakpoints $brk} $test {
54 -re "<PENDING>" {
55 kfail breakpoints/11657 $test
56 }
57 -re "\r\n$gdb_prompt $" {
58 # FIXME: Check more specific resolution state.
59 pass $test
60 }
61}
This page took 0.068473 seconds and 4 git commands to generate.