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