]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/watchpoint-solib.exp
This commit was manufactured by cvs2svn to create branch
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / watchpoint-solib.exp
CommitLineData
a5606eee
VP
1# Copyright 2007 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 $tracelevel then {
17 strace $tracelevel
18}
19
20#
21# test running programs
22#
23set prms_id 0
24set bug_id 0
25
26if {[skip_shlib_tests]} {
27 return 0
28}
29
30# TODO: Use LoadLibrary on this target instead of dlopen.
31if {[istarget arm*-*-symbianelf*]} {
32 return 0
33}
34
35set testfile "watchpoint-solib"
36set libfile "watchpoint-solib-shr"
37set libname "${libfile}.sl"
38set libsrcfile ${libfile}.c
39set srcfile $srcdir/$subdir/$testfile.c
40set binfile $objdir/$subdir/$testfile
41set shlibdir ${objdir}/${subdir}
42set libsrc $srcdir/$subdir/$libfile.c
43set lib_sl $objdir/$subdir/$libname
44
45if [get_compiler_info ${binfile}] {
46 return -1
47}
48
49set lib_opts debug
50set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${libname}\"]
51
52if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
53 || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} {
54 untested "Couldn't compile $libsrc or $srcfile."
55 return -1
56}
57
58# Start with a fresh gdb.
59
60gdb_exit
61gdb_start
62gdb_reinitialize_dir $srcdir/$subdir
63gdb_load ${binfile}
64gdb_load_shlibs $lib_sl
65
66if [target_info exists gdb_stub] {
67 gdb_step_for_stub;
68}
69
70runto_main
71
72# Test that if we set a watchpoint on a global variable
73# in a explicitly loaded shared library, and then
74# re-run the application, gdb does not crash.
75gdb_test_multiple "break foo" "set pending breakpoint" {
76 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
77 gdb_test "y" "Breakpoint.*foo.*pending." "set pending breakpoint"
78 }
79}
80
81gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo"
82gdb_test "watch g" "Hardware watchpoint 3: g" "set watchpoint on g"
83gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit"
84rerun_to_main
85gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo again"
86gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"
87
88
89
90
91