]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/gdb11531.exp
Update copyright year range in all GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / gdb11531.exp
CommitLineData
bdf92a1c
PM
1# This testcase is part of GDB, the GNU debugger.
2
42a4f53d 3# Copyright 2010-2019 Free Software Foundation, Inc.
bdf92a1c
PM
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18# Test GDB bug report 11531.
19# This is a problem related to CANNOT_STEP_HW_WATCHPOINTS macro.
20# It affects Solaris native targets.
21
bdf92a1c 22
289f9037 23standard_testfile
bdf92a1c 24
5b362f04 25if { [prepare_for_testing "failed to prepare" $testfile $testfile.c {debug}] } {
ae59b1da 26 return -1
bdf92a1c
PM
27}
28
e0756905
UW
29# Disable hardware watchpoints if necessary.
30if [target_info exists gdb,no_hardware_watchpoints] {
31 gdb_test_no_output "set can-use-hw-watchpoints 0" ""
32}
bdf92a1c
PM
33
34if { ![runto main] } then {
35 fail "run to main"
36 return
37}
38
39# The breakpoint is probably at the instruction where the value being
40# watched (myrec.x) gets updated. This is the instruction where we
41# expect to receive a watchpoint notification when we do the "stepi"
42# below. However, having the breakpoint at the same location as this
43# intruction can possibly interfere with our testcase, as stepping
44# over the breakpoint in order to get past it may incorrectly lead
45# to the debugger missing the watchpoint hit. This would be a bug
46# in GDB, but this is not the bug that we are trying to test here.
47# So, we remove all breakpoints first.
48
49delete_breakpoints
50
51set nl "\[\r\n\]+"
52
cdc7edd7 53gdb_test "watch myrec.x" ".*atchpoint \[0-9\]+: myrec\.x" "set watchpoint"
bdf92a1c
PM
54
55gdb_test "next" \
56 ".*${nl}.*atchpoint \[0-9\]+: myrec\.x${nl}Old value = 0${nl}New value = 5${nl}.*" \
57 "watchpoint variable triggers at next"
58
59gdb_test "continue" \
60 ".*${nl}.*atchpoint \[0-9\]+: myrec\.x${nl}Old value = 5${nl}New value = 78${nl}.*" \
61 "watchpoint variable triggers at continue"
62