ChangeLog:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / pr11022.exp
CommitLineData
1f3b5d1b
PP
1# Copyright 2009
2# Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17if $tracelevel then {
18 strace $tracelevel
19}
20
21if [target_info exists gdb,no_hardware_watchpoints] {
22 # This test requires HW watchpoints
23 untested pr11022.exp
24 return -1
25}
26
27set testfile "pr11022"
28set srcfile ${testfile}.c
29set binfile ${objdir}/${subdir}/${testfile}
30if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
31 untested pr11022.exp
32 return -1
33}
34
35# Start with a fresh gdb.
36
37gdb_exit
38gdb_start
39gdb_reinitialize_dir $srcdir/$subdir
40gdb_load ${binfile}
41
42if ![runto_main] then {
43 fail "Can't run to main"
44 return 0
45}
46
47gdb_test "break [gdb_get_line_number "break here"]" \
48 ".*Breakpoint.* at .*" \
49 "set breakpoint"
50
51gdb_test "watch x" ".*Hardware watchpoint.*" "set watchpoint"
52gdb_test "continue" ".*break here.*" "breakpoint hit"
53gdb_test "continue" ".*Hardware watchpoint.*Old value = 0.*New value = 42.*" \
54 "watchpoint hit"
55gdb_test "continue" ".*break here.*" "breakpoint hit 2"
56gdb_test "set var x = 1"
57gdb_test "continue" ".*Hardware watchpoint.*Old value = 1.*New value = 42.*" \
58 "watchpoint hit 2"
This page took 0.02474 seconds and 4 git commands to generate.