Updated copyright notices for most files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.base-hp / hwwatchbus.exp
CommitLineData
9b254dd1 1# Copyright (C) 1997, 1998, 2007, 2008 Free Software Foundation, Inc.
7be570e7
JM
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
7be570e7 6# (at your option) any later version.
e22f8b7c 7#
7be570e7
JM
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.
e22f8b7c 12#
7be570e7 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>. */
7be570e7
JM
15
16# Please email any bugs, comments, and/or additions to this file to:
17# bug-gdb@prep.ai.mit.edu
18
19if $tracelevel then {
20 strace $tracelevel
21 }
22
23set prms_id 0
24set bug_id 0
25
26if { [skip_hp_tests] } then { continue }
27
28if { ![istarget "hppa*-*-hpux11.*"] } {
29 verbose "HPUX h/w watch test ignored for non-hppa or pre-HP/UX-10.30 targets."
30 return 0
31}
32
33set testfile "hwwatchbus"
34set srcfile ${testfile}.c
35set binfile ${objdir}/${subdir}/${testfile}
36
37# build the first test case
38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
39 untested hwwatchbus.exp
40 return -1
7be570e7
JM
41}
42
43if [get_compiler_info ${binfile}] {
44 return -1
45}
46
47# Start with a fresh gdb
48
49gdb_exit
50remote_exec build "rm -f ${binfile}.bak"
51gdb_start
52gdb_reinitialize_dir $srcdir/$subdir
53gdb_load ${binfile}
54
55
56# We ought to be able to set a hardware watchpoint, step, and
db521deb 57# get a SIGBUS or SIGSEGV signal reported.
7be570e7
JM
58#
59if ![runto_main] then {
60 fail "can't run to main"
61 return 0
62}
63
64send_gdb "watch bogus_p\n"
65gdb_expect {
66 -re "Hardware watchpoint \[0-9\]*: bogus_p.*$gdb_prompt $"\
67 {pass "set h/w watchpoint"}
68 -re "$gdb_prompt $"\
69 {fail "set h/w watchpoint"}
70 timeout {fail "(timeout) set h/w watchpoint"}
71}
72
73send_gdb "step\n"
74gdb_expect {
db521deb
JL
75 -re "Program received signal (SIGBUS|SIGSEGV), (Bus error|Segmentation fault).* in main .*${srcfile}:8.*$gdb_prompt $"\
76 {pass "see real signal when h/w watchpoint set"}
7be570e7 77 -re "$gdb_prompt $"\
db521deb
JL
78 {fail "see real signal when h/w watchpoint set"}
79 timeout {fail "(timeout) see real signal when h/w watchpoint set"}
7be570e7
JM
80}
81
82remote_exec build "mv ${binfile} ${binfile}.bak"
83return 0
This page took 1.172853 seconds and 4 git commands to generate.