* gdb.cp/nextoverthrow.exp: Skip test if debug info for

_Unwind_DebugHook is missing.
This commit is contained in:
Doug Evans 2011-11-21 17:34:17 +00:00
parent cc18928581
commit 0e965dd0b2
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-11-21 Doug Evans <dje@google.com>
* gdb.cp/nextoverthrow.exp: Skip test if debug info for
_Unwind_DebugHook is missing.
2011-11-20 Stan Shebs <stan@codesourcery.com>
* gdb.trace/tstatus.exp: New.

View File

@ -43,6 +43,11 @@ if ![runto_main] then {
# See whether we have the needed unwinder hooks.
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"
}