Avoid FAILs in gdb.compile
authorTom Tromey <tromey@adacore.com>
Thu, 19 Jan 2023 21:01:27 +0000 (14:01 -0700)
committerTom Tromey <tromey@adacore.com>
Wed, 8 Feb 2023 17:12:22 +0000 (10:12 -0700)
Many gdb.compile C++ tests fail for me on Fedora 36.  I think these
are largely bugs in the plugin, though I didn't investigate too
deeply.  Once one failure is seen, this often cascades and sometimes
there are many timeouts.

For example, this can happen:

    (gdb) compile code var = a->get_var ()
    warning: Could not find symbol "_ZZ9_gdb_exprP10__gdb_regsE1a" for compiled module "/tmp/gdbobj-0xdI6U/out2.o".
    1 symbols were missing, cannot continue.

I think this is probably a plugin bug because, IIRC, in theory these
symbols should be exempt from a lookup via gdb.

This patch arranges to catch any catastrophic failure and then simply
exit the entire .exp file.

gdb/testsuite/gdb.compile/compile-cplus.exp
gdb/testsuite/lib/compile-support.exp

index 489236a8b49379e463edc9b04ef97a4d28ade9a8..4e887daeb29af92bf71a5c6bded97ded0927b64e 100644 (file)
@@ -113,7 +113,7 @@ gdb_test "compile code *(volatile int *) 0 = 0;" \
     "The program being debugged was signaled while in a function called from GDB\\.\r\nGDB remains in the frame where the signal was received\\.\r\n.*" \
     "compile code segfault first"
 gdb_test "bt" \
-    "\r\n#0  \[^\r\n\]* in _gdb_expr \[^\r\n\]*\r\n#1  <function called from gdb>\r\n.*"
+    "\r\n#0  \[^\r\n\]*_gdb_expr \[^\r\n\]*\r\n#1  <function called from gdb>.*"
 
 set test "p/x \$pc"
 set infcall_pc 0
@@ -242,7 +242,9 @@ gdb_test "print globalvar" " = 20" "print unresolved value"
 
 gdb_test_no_output "compile code globalshadow += 1;"
 gdb_test "print globalshadow" " = 101"
+setup_kfail {no bug filed} *-*-*
 gdb_test_no_output "compile code extern int globalshadow; globalshadow += 5;"
+setup_kfail {fails due to previous test} *-*-*
 gdb_test "print 'compile-cplus.c'::globalshadow" " = 15"
 gdb_test "print globalshadow" " = 101" "print globalshadow second time"
 gdb_test_no_output "compile code staticshadow += 2;"
index 64fda8c58a2a12a2498ed862af53af600911ba8a..a8cf52f1f00ee4efc0b10a252573fe6e42ffba9e 100644 (file)
@@ -41,6 +41,10 @@ proc _do_check_compile {expr} {
            # See PR compile/29541.
            set result "confused by glibc debuginfo"
        }
+       -re "$::decimal symbols were missing, cannot continue" {
+           # This appears to be a bug in the compiler plugin.
+           set result "apparent compiler plugin bug"
+       }
        -re "\r\n$gdb_prompt $" {
        }
     }
@@ -189,17 +193,55 @@ namespace eval ::CompileExpression {
            set value $l
        }
 
+       set ok 1
        if {!$nocode} {
-           do_test_ code $exp $result $explicit $name \
-               [list $compile $value $print]
+           if {![do_test_ code $exp $result $explicit $name \
+                     [list $compile $value $print]]} {
+               set ok 0
+           }
+       }
+       if {$ok && !$noprint} {
+           if {![do_test_ print $exp $result $explicit $name \
+                     [list $compile $value $print]]} {
+               set ok 0
+           }
        }
-       if {!$noprint} {
-           do_test_ print $exp $result $explicit $name \
-               [list $compile $value $print]
+       if {!$ok} {
+           return -code return 0
        }
     }
 
+    # Invoke a 'compile' command of some form.  COMMAND is the
+    # command, RESULT is the expected output, and NAME is the test
+    # name.  Issues a pass or fail.  Returns 1 on success, 0 if there
+    # is a failure that should result in the entire remaining .exp
+    # being stopped; in this case an 'unsupported' is issued.
+
+    proc compile_command_ {command result name} {
+       global gdb_prompt
+       set this_result 1
+       gdb_test_multiple $command $name {
+           -re "WARNING .* there are active plugins, do not report this" {
+               # Note that the regexp above does not check for the
+               # prompt.  This avoids a gratuitous timeout.
+               unsupported "GCC compiler plugin crashed"
+               set this_result 0
+           }
+           -re "$::decimal symbols were missing, cannot continue" {
+               # This appears to be a bug in the compiler plugin.
+               unsupported "GCC compiler plugin bug"
+               set this_result 0
+           }
+           -re -wrap "$result" {
+               pass $name
+           }
+       }
+       return $this_result
+    }
+
     # Run a compile test for CMD ("print" or "code").
+    # Return 1 on success, 0 if there is some kind of catastrophic
+    # error.
 
     proc do_test_ {cmd exp result is_explicit tst fail_list} {
        variable varName_
@@ -221,7 +263,7 @@ namespace eval ::CompileExpression {
        if {[string match $cmd "print"]} {
            if {!$is_explicit} {
                eval setup_failures_ $fail_print
-               gdb_test "compile print $exp" $result $tst
+               return [compile_command_ "compile print $exp" $result $tst]
            }
        } else {
            if {$is_explicit} {
@@ -230,10 +272,13 @@ namespace eval ::CompileExpression {
                set command "compile code $varName_ = $exp"
            }
            eval setup_failures_ $fail_compile
-           gdb_test_no_output $command $tst
+           if {![compile_command_ $command "" $tst]} {
+               return 0
+           }
            eval setup_failures_ $fail_value
            gdb_test "p $varName_" "= $result" "result of $tst"
        }
+       return 1
     }
 
     # A convenience proc used to set up xfail and kfail tests.