| OLD | NEW |
| 1 # Copyright (C) 1997-1998, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright (C) 1997-1998, 2007-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 4 # it under the terms of the GNU General Public License as published by |
| 5 # the Free Software Foundation; either version 3 of the License, or | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| 15 | 15 |
| 16 if $tracelevel then { | |
| 17 strace $tracelevel | |
| 18 } | |
| 19 | |
| 20 | 16 |
| 21 if { [skip_hp_tests] } then { continue } | 17 if { [skip_hp_tests] } then { continue } |
| 22 | 18 |
| 23 if { ![istarget "hppa*-*-hpux11.*"] } { | 19 if { ![istarget "hppa*-*-hpux11.*"] } { |
| 24 verbose "HPUX h/w watch test ignored for non-hppa or pre-HP/UX-10.30 targets
." | 20 verbose "HPUX h/w watch test ignored for non-hppa or pre-HP/UX-10.30 targets
." |
| 25 return 0 | 21 return 0 |
| 26 } | 22 } |
| 27 | 23 |
| 28 set testfile "hwwatchbus" | 24 set testfile "hwwatchbus" |
| 29 set srcfile ${testfile}.c | 25 set srcfile ${testfile}.c |
| 30 set binfile ${objdir}/${subdir}/${testfile} | 26 set binfile ${objdir}/${subdir}/${testfile} |
| 31 | 27 |
| 32 # build the first test case | 28 # build the first test case |
| 33 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug}] != "" } { | 29 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug}] != "" } { |
| 34 untested hwwatchbus.exp | 30 untested hwwatchbus.exp |
| 35 return -1 | 31 return -1 |
| 36 } | 32 } |
| 37 | 33 |
| 38 if [get_compiler_info ${binfile}] { | 34 if [get_compiler_info] { |
| 39 return -1 | 35 return -1 |
| 40 } | 36 } |
| 41 | 37 |
| 42 # Start with a fresh gdb | 38 # Start with a fresh gdb |
| 43 | 39 |
| 44 gdb_exit | 40 gdb_exit |
| 45 remote_exec build "rm -f ${binfile}.bak" | 41 remote_exec build "rm -f ${binfile}.bak" |
| 46 gdb_start | 42 gdb_start |
| 47 gdb_reinitialize_dir $srcdir/$subdir | 43 gdb_reinitialize_dir $srcdir/$subdir |
| 48 gdb_load ${binfile} | 44 gdb_load ${binfile} |
| (...skipping 20 matching lines...) Expand all Loading... |
| 69 gdb_expect { | 65 gdb_expect { |
| 70 -re "Program received signal (SIGBUS|SIGSEGV), (Bus error|Segmentation fault).
* in main .*${srcfile}:8.*$gdb_prompt $"\ | 66 -re "Program received signal (SIGBUS|SIGSEGV), (Bus error|Segmentation fault).
* in main .*${srcfile}:8.*$gdb_prompt $"\ |
| 71 {pass "see real signal when h/w watchpoint set"} | 67 {pass "see real signal when h/w watchpoint set"} |
| 72 -re "$gdb_prompt $"\ | 68 -re "$gdb_prompt $"\ |
| 73 {fail "see real signal when h/w watchpoint set"} | 69 {fail "see real signal when h/w watchpoint set"} |
| 74 timeout {fail "(timeout) see real signal when h/w watchpoint set"} | 70 timeout {fail "(timeout) see real signal when h/w watchpoint set"} |
| 75 } | 71 } |
| 76 | 72 |
| 77 remote_exec build "mv ${binfile} ${binfile}.bak" | 73 remote_exec build "mv ${binfile} ${binfile}.bak" |
| 78 return 0 | 74 return 0 |
| OLD | NEW |