aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2011-06-23 14:38:13 +0000
committerYao Qi <yao@codesourcery.com>2011-06-23 14:38:13 +0000
commitab5c6a729c416841aeda2398f77d881aef09208f (patch)
tree39fc99110cb45ae0043474b519969f56b893d36c /gdb
parent86c3c1fccc917b1674bde0d41c24c4331c758e6b (diff)
downloadfsf-binutils-gdb-ab5c6a729c416841aeda2398f77d881aef09208f.zip
fsf-binutils-gdb-ab5c6a729c416841aeda2398f77d881aef09208f.tar.gz
fsf-binutils-gdb-ab5c6a729c416841aeda2398f77d881aef09208f.tar.bz2
2011-06-23 Yao Qi <yao@codesourcery.com>
* gdb.cp/mb-inline.exp: Parse the output of `info break' to check breakpoint 1.2 is disabled. KFAIL for uclinux.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.cp/mb-inline.exp14
2 files changed, 18 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index d60370f..aa9c4f5 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2011-06-23 Yao Qi <yao@codesourcery.com>
+
+ * gdb.cp/mb-inline.exp: Parse the output of `info break' to check breakpoint
+ 1.2 is disabled. KFAIL for uclinux.
+
2011-06-23 Marek Polacek <mpolacek@redhat.com>
* gdb.mi/mi2-var-display.exp: Replace gdb_test_multiple with
diff --git a/gdb/testsuite/gdb.cp/mb-inline.exp b/gdb/testsuite/gdb.cp/mb-inline.exp
index c8f90d0..d670b56 100644
--- a/gdb/testsuite/gdb.cp/mb-inline.exp
+++ b/gdb/testsuite/gdb.cp/mb-inline.exp
@@ -101,7 +101,19 @@ gdb_expect {
}
}
-gdb_continue_to_end "disabled breakpoint 1.2"
+gdb_test_multiple "info break" "disabled breakpoint 1.2" {
+ -re "1\.2.* n .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
+ pass "disabled breakpoint 1.2"
+ }
+ -re "1\.2.* y .* at .*$hdrfile:$bp_location.*$gdb_prompt $" {
+ # When inferior is restarted, breakpoint locations will be updated.
+ # On uclinux, it is not guaranteed that new inferior is located the
+ # same address as previous one, so status/state of breakpoint location
+ # will loose. The heuristic of GDB should be improved.
+ setup_kfail gdb/12924 "*-*-uclinux*"
+ fail "disabled breakpoint 1.2"
+ }
+}
# Make sure we can set a breakpoint on a source statement that spans
# multiple lines.