* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git] / gdb / testsuite / gdb.base / watchpoint-solib.exp
bloba5a7777bb8a74518643d3cd362ead349b1cc750b
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/>.
16 if $tracelevel then {
17     strace $tracelevel
21 # test running programs
23 set prms_id 0
24 set bug_id 0
26 if {[skip_shlib_tests]} {
27     return 0
30 # TODO: Use LoadLibrary on this target instead of dlopen.
31 if {[istarget arm*-*-symbianelf*]} {
32     return 0
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}] {
46     return -1
49 set lib_opts debug
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."
55     return -1
58 # Start with a fresh gdb.
60 gdb_exit
61 gdb_start
62 gdb_reinitialize_dir $srcdir/$subdir
63 gdb_load ${binfile}
64 gdb_load_shlibs $lib_sl
66 if [target_info exists gdb_stub] {
67     gdb_step_for_stub;
70 runto_main
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"
83      }
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"
89 rerun_to_main
90 gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo again"
91 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"