aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2012-08-24 03:19:58 +0000
committerYao Qi <yao@codesourcery.com>2012-08-24 03:19:58 +0000
commite7d50cc9e6af53a13f3a3140795d7b5065e8fe33 (patch)
tree0eb62fb4d8a17d7fdda49c6c675102043f8460ae
parent8c56c1b90ec8aba22066f4fd153d6ec9ded4d050 (diff)
downloadgdb-e7d50cc9e6af53a13f3a3140795d7b5065e8fe33.zip
gdb-e7d50cc9e6af53a13f3a3140795d7b5065e8fe33.tar.gz
gdb-e7d50cc9e6af53a13f3a3140795d7b5065e8fe33.tar.bz2
gdb/testsuite/
* lib/gdb.exp (skip_unwinder_tests): Remove pass.
-rw-r--r--gdb/testsuite/ChangeLog4
-rw-r--r--gdb/testsuite/lib/gdb.exp6
2 files changed, 4 insertions, 6 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 04e595f..a769c14 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2012-08-24 Yao Qi <yao@codesourcery.com>
+
+ * lib/gdb.exp (skip_unwinder_tests): Remove pass.
+
2012-08-23 Pedro Alves <palves@redhat.com>
* gdb.base/help.exp: Adjust to "handle" help text change.
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 0b02f76..97e79af 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -2104,23 +2104,17 @@ proc skip_unwinder_tests {} {
set ok 1
gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
-re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
- # Pass the test so we don't get bogus fails in the results.
- pass "check for unwinder hook"
set ok 0
}
-re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
- pass "check for unwinder hook"
}
-re "No symbol .* in current context.\r\n$gdb_prompt $" {
- # Pass the test so we don't get bogus fails in the results.
- pass "check for unwinder hook"
set ok 0
}
}
if {!$ok} {
gdb_test_multiple "info probe" "check for stap probe in unwinder" {
-re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
- pass "check for stap probe in unwinder"
set ok 1
}
-re "\r\n$gdb_prompt $" {