ChangeLog:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / watchpoint-solib.exp
CommitLineData
0fb0cc75 1# Copyright 2007, 2009 Free Software Foundation, Inc.
a5606eee
VP
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
2992cbe0
UW
72# Disable hardware watchpoints if necessary.
73if [target_info exists gdb,no_hardware_watchpoints] {
74 gdb_test "set can-use-hw-watchpoints 0" "" ""
75}
76
a5606eee
VP
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.
80gdb_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"
83 }
84}
85
86gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo"
2992cbe0 87gdb_test "watch g" "atchpoint 3: g" "set watchpoint on g"
a5606eee
VP
88gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit"
89rerun_to_main
90gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo again"
91gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"
92
93
94
95
96
This page took 0.276491 seconds and 4 git commands to generate.