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