1 # Copyright 2007, 2009 Free Software Foundation, Inc.
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.
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.
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/>.
21 # test running programs
26 if {[skip_shlib_tests]} {
30 # TODO: Use LoadLibrary on this target instead of dlopen.
31 if {[istarget arm*-*-symbianelf*]} {
35 set testfile "watchpoint-solib"
36 set libfile "watchpoint-solib-shr"
37 set libname "${libfile}.sl"
38 set libsrcfile ${libfile}.c
39 set srcfile $srcdir/$subdir/$testfile.c
40 set binfile $objdir/$subdir/$testfile
41 set shlibdir ${objdir}/${subdir}
42 set libsrc $srcdir/$subdir/$libfile.c
43 set lib_sl $objdir/$subdir/$libname
45 if [get_compiler_info ${binfile}] {
50 set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${libname}\"]
52 if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
53 || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} {
54 untested "Couldn't compile $libsrc or $srcfile."
58 # Start with a fresh gdb.
62 gdb_reinitialize_dir $srcdir/$subdir
64 gdb_load_shlibs $lib_sl
66 if [target_info exists gdb_stub] {
72 # Disable hardware watchpoints if necessary.
73 if [target_info exists gdb,no_hardware_watchpoints] {
74 gdb_test "set can-use-hw-watchpoints 0" "" ""
77 # Test that if we set a watchpoint on a global variable
78 # in a explicitly loaded shared library, and then
79 # re-run the application, gdb does not crash.
80 gdb_test_multiple "break foo" "set pending breakpoint" {
81 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
82 gdb_test "y" "Breakpoint.*foo.*pending." "set pending breakpoint"
86 gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo"
87 gdb_test "watch g" "atchpoint 3: g" "set watchpoint on g"
88 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit"
90 gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo again"
91 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"