]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb/testsuite: Add libc_has_debug_info require helper
authorThiago Jung Bauermann <thiago.bauermann@linaro.org>
Fri, 19 Apr 2024 06:02:46 +0000 (03:02 -0300)
committerThiago Jung Bauermann <thiago.bauermann@linaro.org>
Wed, 24 Apr 2024 16:20:42 +0000 (13:20 -0300)
Factor the test for libc debug info out of gdb.base/relativedebug.exp to
a new procedure.

Also, change the "info sharedlibrary" test to explicitly detect when
libc has debug info.

Approved-by: Kevin Buettner <kevinb@redhat.com>
gdb/testsuite/gdb.base/relativedebug.exp
gdb/testsuite/lib/gdb.exp

index bf8d76887122636878aed93e4999db193b4e278b..f882a5cf167664e277e459147d278638bebe0486 100644 (file)
@@ -13,7 +13,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-require {!target_info exists gdb,nosignals}
+require {!target_info exists gdb,nosignals} libc_has_debug_info
 
 standard_testfile .c
 
@@ -28,17 +28,6 @@ clean_restart ${binfile}
 
 runto_main
 
-set test "info sharedlibrary"
-gdb_test_multiple $test $test {
-    -re ".*\(\\*\)\[^\r\n\]*/libc\.so.*$gdb_prompt $" {
-       # Skip the test below if libc doesn't have debug info.
-       unsupported "libc doesn't have debug info"
-       return -1
-    }
-    -re ".*$gdb_prompt $" {
-    }
-}
-
 # pause () -> SIGALRM -> handler () -> abort ()
 gdb_test "continue" "Program received signal SIGABRT.*"
 
index cbd37fd3094718a3a90b0af4fc2a3bfad9337982..1e26937c0dcfc900a09f50e1226afaf655f133f5 100644 (file)
@@ -3699,6 +3699,62 @@ proc support_displaced_stepping {} {
     return 0
 }
 
+# Return 1 if GDB can find the libc debug info, or 0 and a reason string if it
+# can't.  This procedure is meant to be called by the require procedure.
+gdb_caching_proc libc_has_debug_info {} {
+    global srcdir subdir gdb_prompt inferior_exited_re
+
+    set me "libc_has_debug_info"
+
+    # Compile a test program.
+    set src {
+       #include <stdio.h>
+
+       int main (void) {
+           printf ("Hello, world!\n");
+           return 0;
+       }
+    }
+    if {![gdb_simple_compile $me $src executable {debug}]} {
+       return [list 0 "failed to compile test program"]
+    }
+
+    # No error message, compilation succeeded so now run it via gdb.
+
+    gdb_exit
+    gdb_start
+    gdb_reinitialize_dir $srcdir/$subdir
+    gdb_load "$obj"
+    runto_main
+    set test "info sharedlibrary libc.so"
+    gdb_test_multiple $test $test {
+       -re ".*\(\\*\)\[^\r\n\]*/libc\.so.*$gdb_prompt $" {
+           # Matched the "(*)" in the "Syms Read" columns which means:
+           # "(*): Shared library is missing debugging information."
+           verbose -log "$me: libc doesn't have debug info"
+           set libc_has_debug_info 0
+           set message "libc doesn't have debug info"
+       }
+       -re ".*Yes\[ \t\]+\[^\r\n\]*/libc\.so.*$gdb_prompt $" {
+           verbose -log "$me: libc has debug info"
+           set libc_has_debug_info 1
+       }
+       default {
+           set libc_has_debug_info 0
+           set message "libc not found in the inferior"
+       }
+    }
+    gdb_exit
+    remote_file build delete $obj
+
+    verbose "$me: returning $libc_has_debug_info" 2
+    if { $libc_has_debug_info } {
+       return $libc_has_debug_info
+    } else {
+       return [list $libc_has_debug_info $message]
+    }
+}
+
 # Run a test on the target to see if it supports vmx hardware.  Return 1 if so, 
 # 0 if it does not.  Based on 'check_vmx_hw_available' from the GCC testsuite.