aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/break-idempotent.exp3
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 1e48f98..e68ffaf 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,11 @@
2015-04-30 Yao Qi <yao.qi@linaro.org>
+ * gdb.base/break-idempotent.exp: If
+ skip_hw_watchpoint_multi_tests returns true, skip the tests
+ on "rwatch" and "awatch".
+
+2015-04-30 Yao Qi <yao.qi@linaro.org>
+
* gdb.base/relativedebug.exp: Invoke gdb command
"info sharedlibrary", and if libc.so doesn't have debug info,
skip the test.
diff --git a/gdb/testsuite/gdb.base/break-idempotent.exp b/gdb/testsuite/gdb.base/break-idempotent.exp
index c5dae96..1cff706 100644
--- a/gdb/testsuite/gdb.base/break-idempotent.exp
+++ b/gdb/testsuite/gdb.base/break-idempotent.exp
@@ -174,7 +174,8 @@ foreach always_inserted { "off" "on" } {
test_break $always_inserted "watch"
}
- if {![skip_hw_watchpoint_access_tests]} {
+ if {![skip_hw_watchpoint_access_tests]
+ && ![skip_hw_watchpoint_multi_tests]} {
test_break $always_inserted "rwatch"
test_break $always_inserted "awatch"
}