diff options
Diffstat (limited to 'gdb/testsuite/lib/gdb.exp')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index f3f0bfa..13d1ae8 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -4081,19 +4081,19 @@ proc skip_hw_watchpoint_multi_tests {} { return 0 } -# Return a 1 if we should skip tests that require read/access watchpoints +# Return a 1 if we should run tests that require read/access watchpoints -proc skip_hw_watchpoint_access_tests {} { +proc allow_hw_watchpoint_access_tests {} { if { [skip_hw_watchpoint_tests] } { - return 1 + return 0 } # These targets support just write watchpoints if { [istarget "s390*-*-*"] } { - return 1 + return 0 } - return 0 + return 1 } # Return 1 if we should skip tests that require the runtime unwinder |