| OLD | NEW |
| 1 # Copyright 2010-2012 Free Software Foundation, Inc. | 1 # Copyright 2010-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 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 | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 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/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 if { [skip_cplus_tests] } { continue } | 16 if { [skip_cplus_tests] } { continue } |
| 17 if { [skip_shlib_tests] } { continue } | 17 if { [skip_shlib_tests] } { continue } |
| 18 | 18 |
| 19 set testfile re-set-overloaded | 19 standard_testfile bool.cc .cc |
| 20 set srcfile bool.cc | |
| 21 set executable $testfile | |
| 22 set binfile $objdir/$subdir/$executable | |
| 23 | 20 |
| 24 set libsrcfile ${testfile}.cc | 21 set sofile [standard_output_file ${testfile}.so] |
| 25 set sofile $objdir/$subdir/${testfile}.so | |
| 26 | 22 |
| 27 # Create and source the file that provides information about the compiler | 23 # Create and source the file that provides information about the compiler |
| 28 # used to compile the test case. | 24 # used to compile the test case. |
| 29 if [get_compiler_info ${binfile} "c++"] { | 25 if [get_compiler_info "c++"] { |
| 30 return -1 | 26 return -1 |
| 31 } | 27 } |
| 32 | 28 |
| 33 if { [gdb_compile_shlib $srcdir/$subdir/$libsrcfile $sofile {debug c++}] != "" | 29 if { [gdb_compile_shlib $srcdir/$subdir/$srcfile2 $sofile {debug c++}] != "" |
| 34 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug "c
++" shlib=${sofile}]] != ""} { | 30 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug "c
++" shlib=${sofile}]] != ""} { |
| 35 untested ${testfile}.exp | 31 untested ${testfile}.exp |
| 36 return -1 | 32 return -1 |
| 37 } | 33 } |
| 38 | 34 |
| 39 clean_restart $executable | 35 clean_restart $testfile |
| 40 gdb_load_shlibs ${sofile} | 36 gdb_load_shlibs ${sofile} |
| 41 | 37 |
| 42 gdb_test_no_output "set breakpoint pending yes" | 38 gdb_test_no_output "set breakpoint pending yes" |
| 43 gdb_test "break C::C" {Breakpoint [0-9]+ \(C::C\) pending\.} "break C::C" | 39 gdb_test "break C::C" {Breakpoint [0-9]+ \(C::C\) pending\.} "break C::C" |
| 44 gdb_test_no_output {set variable $brk = $bpnum} | 40 gdb_test_no_output {set variable $brk = $bpnum} |
| 45 | 41 |
| 46 # runto or runto_main would call delete_breakpoints. | 42 # runto or runto_main would call delete_breakpoints. |
| 47 gdb_breakpoint "main" | 43 gdb_breakpoint "main" |
| 48 gdb_run_cmd | 44 gdb_run_cmd |
| 49 gdb_test "" ".*" "start" | 45 gdb_test "" ".*" "start" |
| 50 | 46 |
| 51 set test "breakpoint resolved" | 47 set test "breakpoint resolved" |
| 52 gdb_test_multiple {info breakpoints $brk} $test { | 48 gdb_test_multiple {info breakpoints $brk} $test { |
| 53 -re "<PENDING>" { | 49 -re "<PENDING>" { |
| 54 kfail breakpoints/11657 $test | 50 kfail breakpoints/11657 $test |
| 55 } | 51 } |
| 56 -re "\r\n$gdb_prompt $" { | 52 -re "\r\n$gdb_prompt $" { |
| 57 # FIXME: Check more specific resolution state. | 53 # FIXME: Check more specific resolution state. |
| 58 pass $test | 54 pass $test |
| 59 } | 55 } |
| 60 } | 56 } |
| OLD | NEW |