* lib/gdb.exp (skip_unwinder_tests): Don't leave 'ok' set if
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
index 0b02f76f0eb292d4fa06fb6d97f928b89393b0ea..0b4c67926df5f169a784bb10e8d30187da38baab 100644 (file)
@@ -2101,26 +2101,19 @@ proc skip_hw_watchpoint_access_tests {} {
 proc skip_unwinder_tests {} {
     global gdb_prompt
 
-    set ok 1
+    set ok 0
     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"
+           set ok 1
        }
        -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 $" {
This page took 0.023565 seconds and 4 git commands to generate.