]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.cp/re-set-overloaded.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / re-set-overloaded.exp
1 # Copyright 2010-2024 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 require allow_cplus_tests allow_shlib_tests
17
18 standard_testfile bool.cc .cc
19
20 set sofile [standard_output_file ${testfile}.so]
21
22 if { [gdb_compile_shlib $srcdir/$subdir/$srcfile2 $sofile {debug c++}] != ""
23 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug "c++" shlib=${sofile}]] != ""} {
24 untested "failed to compile"
25 return -1
26 }
27
28 clean_restart $testfile
29 gdb_load_shlib ${sofile}
30
31 gdb_test_no_output "set breakpoint pending yes"
32 gdb_test "break C::C" {Breakpoint [0-9]+ \(C::C\) pending\.}
33 gdb_test_no_output {set variable $brk = $bpnum}
34
35 # runto or runto_main would call delete_breakpoints.
36 gdb_breakpoint "main"
37 gdb_run_cmd
38 gdb_test "" ".*" "start"
39
40 set test "breakpoint resolved"
41 gdb_test_multiple {info breakpoints $brk} $test {
42 -re "<PENDING>" {
43 kfail breakpoints/11657 $test
44 }
45 -re "\r\n$gdb_prompt $" {
46 # FIXME: Check more specific resolution state.
47 pass $test
48 }
49 }