| OLD | NEW |
| 1 # This testcase is part of GDB, the GNU debugger. | 1 # This testcase is part of GDB, the GNU debugger. |
| 2 | 2 |
| 3 # Copyright 2010-2012 Free Software Foundation, Inc. | 3 # Copyright 2010-2013 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 # This program is free software; you can redistribute it and/or modify | 5 # This program is free software; you can redistribute it and/or modify |
| 6 # it under the terms of the GNU General Public License as published by | 6 # it under the terms of the GNU General Public License as published by |
| 7 # the Free Software Foundation; either version 3 of the License, or | 7 # the Free Software Foundation; either version 3 of the License, or |
| 8 # (at your option) any later version. | 8 # (at your option) any later version. |
| 9 # | 9 # |
| 10 # This program is distributed in the hope that it will be useful, | 10 # This program is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. | 13 # GNU General Public License for more details. |
| 14 # | 14 # |
| 15 # You should have received a copy of the GNU General Public License | 15 # You should have received a copy of the GNU General Public License |
| 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | 17 |
| 18 # This file was written by Pedro Alves <pedro@codesourcery.com> | |
| 19 | |
| 20 # This file is part of the gdb testsuite. | 18 # This file is part of the gdb testsuite. |
| 21 | 19 |
| 22 # | 20 # |
| 23 # Tests involving read watchpoints, and other kinds of watchpoints | 21 # Tests involving read watchpoints, and other kinds of watchpoints |
| 24 # watching the same memory as read watchpoints. | 22 # watching the same memory as read watchpoints. |
| 25 # | 23 # |
| 26 | 24 |
| 27 set testfile "watch-read" | 25 standard_testfile .c |
| 28 set srcfile ${testfile}.c | |
| 29 | 26 |
| 30 if {[skip_hw_watchpoint_access_tests]} { | 27 if {[skip_hw_watchpoint_access_tests]} { |
| 31 return 0 | 28 return 0 |
| 32 } | 29 } |
| 33 | 30 |
| 34 if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } { | 31 if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } { |
| 35 untested ${testfile}.exp | 32 untested ${testfile}.exp |
| 36 return -1 | 33 return -1 |
| 37 } | 34 } |
| 38 | 35 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 gdb_test "continue" \ | 96 gdb_test "continue" \ |
| 100 "read watchpoint .*: global.*Value = 2.*in main.*$srcfile:$read_line.*" \ | 97 "read watchpoint .*: global.*Value = 2.*in main.*$srcfile:$read_line.*" \ |
| 101 "read watchpoint triggers when value doesn't change, trapping reads and writ
es" | 98 "read watchpoint triggers when value doesn't change, trapping reads and writ
es" |
| 102 | 99 |
| 103 set exp "" | 100 set exp "" |
| 104 set exp "${exp}2.*read watchpoint.*keep y.*global.*breakpoint already hit 3 time
s.*" | 101 set exp "${exp}2.*read watchpoint.*keep y.*global.*breakpoint already hit 3 time
s.*" |
| 105 set exp "${exp}3.*watchpoint.*keep y.*global.*breakpoint already hit 1 time.*" | 102 set exp "${exp}3.*watchpoint.*keep y.*global.*breakpoint already hit 1 time.*" |
| 106 gdb_test "info watchpoints" \ | 103 gdb_test "info watchpoints" \ |
| 107 "$exp" \ | 104 "$exp" \ |
| 108 "only read watchpoint triggers when value doesn't change" | 105 "only read watchpoint triggers when value doesn't change" |
| OLD | NEW |