| OLD | NEW |
| 1 # Copyright 2009-2012 Free Software Foundation, Inc. | 1 # Copyright 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 {[skip_hw_watchpoint_access_tests]} { | 16 # http://sourceware.org/bugzilla/show_bug.cgi?id=14643 |
| 17 return 0 | 17 # gdb 7.5 thinks "thread" is a linespec keyword. |
| 18 } | |
| 19 | 18 |
| 20 set test watchpoint-hw-hit-once | 19 standard_testfile |
| 21 set srcfile ${test}.c | 20 set exefile $testfile |
| 22 if { [prepare_for_testing ${test}.exp ${test} ${srcfile}] } { | 21 |
| 22 if {[prepare_for_testing $testfile $exefile $srcfile {debug}]} { |
| 23 return -1 | 23 return -1 |
| 24 } | 24 } |
| 25 | 25 |
| 26 if ![runto_main] { | 26 if ![runto_main] { |
| 27 return -1 | 27 fail "Can't run to main" |
| 28 return 0 |
| 28 } | 29 } |
| 29 | 30 |
| 30 gdb_test "rwatch watchee" | 31 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"] |
| 31 | 32 |
| 32 gdb_breakpoint [gdb_get_line_number "break-at-exit"] | 33 gdb_test "break $srcfile:$bp_location1" \ |
| 34 "Breakpoint.*at.* file .*$srcfile, line $bp_location1\\." \ |
| 35 "breakpoint line number in file" |
| 33 | 36 |
| 34 gdb_test "continue" "Continuing.\r\nHardware read watchpoint \[0-9\]+: watchee\r
\n\r\nValue = 0\r\n.*" | 37 gdb_continue_to_breakpoint "$bp_location1" |
| 35 | 38 |
| 36 # Here should be no repeated notification of the read watchpoint. | 39 gdb_breakpoint "thread" "message" |
| 37 gdb_test "continue" \ | 40 |
| 38 » "Continuing\\.\[ \r\n\]+Breakpoint \[0-9\]+, .*break-at-exit.*" \ | 41 gdb_continue_to_breakpoint "thread function" |
| 39 » "continue to break-at-exit" | |
| OLD | NEW |