| OLD | NEW |
| 1 # Copyright 2010-2012 Free Software Foundation, Inc. | 1 # Copyright 2010-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 # Test for watchpoints with conditions that involve inferior function | 16 # Test for watchpoints with conditions that involve inferior function |
| 17 # calls. | 17 # calls. |
| 18 | 18 |
| 19 set testfile "watch-cond-infcall" | 19 set testfile "watch-cond-infcall" |
| 20 set srcfile ${testfile}.c | 20 set srcfile ${testfile}.c |
| 21 set binfile ${objdir}/${subdir}/${testfile} | 21 set binfile ${objdir}/${subdir}/${testfile} |
| 22 | 22 |
| 23 if { [build_executable ${testfile}.exp ${testfile} ${testfile}.c {debug}] } { | 23 if { [build_executable ${testfile}.exp ${testfile} ${testfile}.c {debug}] } { |
| 24 untested ${testfile}.exp | 24 untested ${testfile}.exp |
| 25 return -1 | 25 return -1 |
| 26 } | 26 } |
| 27 | 27 |
| 28 proc test_watchpoint { hw teststr } { | 28 proc test_watchpoint { hw } { |
| 29 global testfile | 29 global testfile |
| 30 global pf_prefix | |
| 31 | |
| 32 set old_pf_prefix $pf_prefix | |
| 33 lappend pf_prefix "$teststr:" | |
| 34 | 30 |
| 35 clean_restart ${testfile} | 31 clean_restart ${testfile} |
| 36 | 32 |
| 37 if { ![runto main] } then { | 33 if { ![runto main] } then { |
| 38 fail "run to main" | 34 fail "run to main" |
| 39 return | 35 return |
| 40 } | 36 } |
| 41 | 37 |
| 42 if { ! $hw } { | 38 if { ! $hw } { |
| 43 gdb_test_no_output "set can-use-hw-watchpoints 0" "" | 39 gdb_test_no_output "set can-use-hw-watchpoints 0" "" |
| 44 } | 40 } |
| 45 | 41 |
| 46 gdb_test "watch var if return_1 ()" "atchpoint .*: var" | 42 gdb_test "watch var if return_1 ()" "atchpoint .*: var" |
| 47 | 43 |
| 48 gdb_breakpoint [gdb_get_line_number "break-at-exit"] | 44 gdb_breakpoint [gdb_get_line_number "break-at-exit"] |
| 49 | 45 |
| 50 gdb_test "continue" \ | 46 gdb_test "continue" \ |
| 51 "atchpoint \[0-9\]+: var\r\n\r\nOld value = 0\r\nNew value = 1\r\n.*watc
hpoint-stop.*" \ | 47 "atchpoint \[0-9\]+: var\r\n\r\nOld value = 0\r\nNew value = 1\r\n.*watc
hpoint-stop.*" \ |
| 52 "continue" | 48 "continue" |
| 53 | |
| 54 set pf_prefix $old_pf_prefix | |
| 55 } | 49 } |
| 56 | 50 |
| 57 if { ![target_info exists gdb,no_hardware_watchpoints] } { | 51 if { ![target_info exists gdb,no_hardware_watchpoints] } { |
| 58 test_watchpoint 1 "hw" | 52 with_test_prefix "hw" { test_watchpoint 1 } |
| 59 } | 53 } |
| 60 | 54 |
| 61 test_watchpoint 0 "sw" | 55 with_test_prefix "sw" { test_watchpoint 0 } |
| OLD | NEW |