+2012-01-27 Pedro Alves <palves@redhat.com>
+
+ * gdb.base/watchpoint.exp (maybe_clean_restart)
+ (maybe_reinitialize): New.
+ (test_disabling_watchpoints): Call maybe_reinitialize. Don't
+ expect "hit N times".
+ (test_disabling_watchpoints, test_complex_watchpoint)
+ (test_watchpoint_and_breakpoint, test_inaccessible_watchpoint):
+ Call maybe_clean_restart.
+ (top level): Use clean_restart. Remove "mips-idt-*"
+ reinitialization.
+
2012-01-27 Pedro Alves <palves@redhat.com>
* gdb.base/watchpoint.exp: Always run test_complex_watchpoint.
return 1
}
+proc maybe_clean_restart { } {
+ # The IDT/sim monitor only has 8 (!) open files, of which it uses
+ # 4 (!). So we have to make sure one program exits before
+ # starting another one.
+ if [istarget "mips-idt-*"] then {
+ global testfile
+
+ clean_restart $testfile
+ }
+}
+
+proc maybe_reinitialize { } {
+ # The IDT/sim monitor only has 8 (!) open files, of which it uses
+ # 4 (!). So we have to make sure one program exits before
+ # starting another one.
+ if [istarget "mips-idt-*"] then {
+ global testfile
+
+ clean_restart $testfile
+ initialize
+ }
+}
+
#
# Test simple watchpoint.
#
global decimal
global hex
- # "info watch" is the same as "info break"
- gdb_test "info watch" "\[0-9]+\[ \]*.*watchpoint.*ival3\r\n\.*\[0-9\]+ times.*" "watchpoints found in watchpoint/breakpoint table"
+ maybe_reinitialize
+
+ gdb_test "info watch" "\[0-9]+\[ \]*.*watchpoint.*ival3.*" "watchpoints found in watchpoint/breakpoint table"
# Ensure that the watchpoint is disabled when we startup.
proc test_stepping {} {
global gdb_prompt
+ maybe_clean_restart
+
if [runto marker1] then {
gdb_test "watch ival2" ".*\[Ww\]atchpoint \[0-9\]*: ival2"
proc test_complex_watchpoint {} {
global gdb_prompt
+ maybe_clean_restart
+
if [runto marker4] then {
gdb_test "watch ptr1->val" ".*\[Ww\]atchpoint \[0-9\]*: ptr1->val"
gdb_test "break marker5" ".*Breakpoint.*"
proc test_watchpoint_and_breakpoint {} {
global gdb_prompt
+ maybe_clean_restart
+
# This is a test for PR gdb/38, which involves setting a
# watchpoint right after you've reached a breakpoint.
proc test_inaccessible_watchpoint {} {
global gdb_prompt
+ maybe_clean_restart
+
# This is a test for watchpoints on currently inaccessible (but later
# valid) memory.
# Start with a fresh gdb.
-gdb_exit
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load $binfile
+clean_restart $testfile
set prev_timeout $timeout
set timeout 600
verbose "Timeout now 600 sec.\n"
test_simple_watchpoint
- # The IDT/sim monitor only has 8 (!) open files, of which it uses
- # 4 (!). So we have to make sure one program exits before
- # starting another one.
- if [istarget "mips-idt-*"] then {
- gdb_exit
- gdb_start
- gdb_reinitialize_dir $srcdir/$subdir
- gdb_load $binfile
- initialize
- }
-
test_disabling_watchpoints
- # See above.
- if [istarget "mips-idt-*"] then {
- gdb_exit
- gdb_start
- gdb_reinitialize_dir $srcdir/$subdir
- gdb_load $binfile
- initialize
- }
-
if ![target_info exists gdb,cannot_call_functions] {
test_stepping
}
test_watchpoint_triggered_in_syscall
}
- # See above.
- if [istarget "mips-idt-*"] then {
- gdb_exit
- gdb_start
- gdb_reinitialize_dir $srcdir/$subdir
- gdb_load $binfile
- }
-
test_complex_watchpoint
test_inaccessible_watchpoint
+ maybe_clean_restart
+
# Verify that a user can force GDB to use "slow" watchpoints.
# (This proves rather little on kernels that don't support
# fast watchpoints, but still...)
"Expression cannot be implemented with read/access watchpoint..*" \
"rwatch disallowed when can-set-hw-watchpoints cleared"
- # See above.
- if [istarget "mips-idt-*"] then {
- gdb_exit
- gdb_start
- gdb_reinitialize_dir $srcdir/$subdir
- gdb_load $binfile
- }
-
test_watchpoint_and_breakpoint
test_watchpoint_in_big_blob
- # See above.
- if [istarget "mips-idt-*"] then {
- clean_restart
- }
-
test_constant_watchpoint
test_disable_enable_software_watchpoint