Fix build failure in inf-ptrace.c.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.base-hp / hwwatchbus.exp
CommitLineData
0fb0cc75 1# Copyright (C) 1997, 1998, 2007, 2008, 2009 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 15
7be570e7
JM
16if $tracelevel then {
17 strace $tracelevel
18 }
19
20set prms_id 0
21set bug_id 0
22
23if { [skip_hp_tests] } then { continue }
24
25if { ![istarget "hppa*-*-hpux11.*"] } {
26 verbose "HPUX h/w watch test ignored for non-hppa or pre-HP/UX-10.30 targets."
27 return 0
28}
29
30set testfile "hwwatchbus"
31set srcfile ${testfile}.c
32set binfile ${objdir}/${subdir}/${testfile}
33
34# build the first test case
35if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
36 untested hwwatchbus.exp
37 return -1
7be570e7
JM
38}
39
40if [get_compiler_info ${binfile}] {
41 return -1
42}
43
44# Start with a fresh gdb
45
46gdb_exit
47remote_exec build "rm -f ${binfile}.bak"
48gdb_start
49gdb_reinitialize_dir $srcdir/$subdir
50gdb_load ${binfile}
51
52
53# We ought to be able to set a hardware watchpoint, step, and
db521deb 54# get a SIGBUS or SIGSEGV signal reported.
7be570e7
JM
55#
56if ![runto_main] then {
57 fail "can't run to main"
58 return 0
59}
60
61send_gdb "watch bogus_p\n"
62gdb_expect {
63 -re "Hardware watchpoint \[0-9\]*: bogus_p.*$gdb_prompt $"\
64 {pass "set h/w watchpoint"}
65 -re "$gdb_prompt $"\
66 {fail "set h/w watchpoint"}
67 timeout {fail "(timeout) set h/w watchpoint"}
68}
69
70send_gdb "step\n"
71gdb_expect {
db521deb
JL
72 -re "Program received signal (SIGBUS|SIGSEGV), (Bus error|Segmentation fault).* in main .*${srcfile}:8.*$gdb_prompt $"\
73 {pass "see real signal when h/w watchpoint set"}
7be570e7 74 -re "$gdb_prompt $"\
db521deb
JL
75 {fail "see real signal when h/w watchpoint set"}
76 timeout {fail "(timeout) see real signal when h/w watchpoint set"}
7be570e7
JM
77}
78
79remote_exec build "mv ${binfile} ${binfile}.bak"
80return 0
This page took 0.895922 seconds and 4 git commands to generate.