2017-12-10 22:00:49 +00:00
|
|
|
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
2017-12-04 19:24:00 +00:00
|
|
|
From: Fedora GDB patches <invalid@email.com>
|
|
|
|
Date: Fri, 27 Oct 2017 21:07:50 +0200
|
|
|
|
Subject: gdb-core-open-vdso-warning.patch
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
;; Fix GNU/Linux core open: Can't read pathname for load map: Input/output error.
|
|
|
|
;; Fix regression of undisplayed missing shared libraries caused by a fix for.
|
|
|
|
;;=fedoratest: It should be in glibc: libc-alpha: <20091004161706.GA27450@.*>
|
2017-12-04 19:24:00 +00:00
|
|
|
|
2010-01-12 22:15:57 +00:00
|
|
|
http://sourceware.org/ml/gdb-patches/2009-10/msg00142.html
|
|
|
|
Subject: [patch] Fix GNU/Linux core open: Can't read pathname for load map: Input/output error.
|
|
|
|
|
2012-06-19 20:30:55 +00:00
|
|
|
[ New patch variant. ]
|
2010-01-12 22:15:57 +00:00
|
|
|
|
2014-02-07 18:38:14 +00:00
|
|
|
commit 7d760051ffb8a23cdc51342d4e6243fbc462f73f
|
|
|
|
Author: Ulrich Weigand <uweigand@de.ibm.com>
|
|
|
|
Date: Wed Sep 25 11:52:50 2013 +0000
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
diff --git a/gdb/testsuite/gdb.base/solib-symbol.exp b/gdb/testsuite/gdb.base/solib-symbol.exp
|
|
|
|
--- a/gdb/testsuite/gdb.base/solib-symbol.exp
|
|
|
|
+++ b/gdb/testsuite/gdb.base/solib-symbol.exp
|
2023-12-09 01:43:22 +00:00
|
|
|
@@ -27,6 +27,7 @@ set testfile "solib-symbol-main"
|
2012-06-19 20:30:55 +00:00
|
|
|
set srcfile ${srcdir}/${subdir}/${testfile}.c
|
2013-08-02 20:26:03 +00:00
|
|
|
set binfile [standard_output_file ${testfile}]
|
2012-06-19 20:30:55 +00:00
|
|
|
set bin_flags [list debug shlib=${binfile_lib}]
|
2013-08-02 20:26:03 +00:00
|
|
|
+set executable ${testfile}
|
2012-06-19 20:30:55 +00:00
|
|
|
|
2023-03-09 04:42:55 +00:00
|
|
|
if { [gdb_compile_shlib ${srcfile_lib} ${binfile_lib} $lib_flags] != ""
|
|
|
|
|| [gdb_compile ${srcfile} ${binfile} executable $bin_flags] != "" } {
|
2023-12-09 01:43:22 +00:00
|
|
|
@@ -61,4 +62,28 @@ gdb_test "br foo2" \
|
2012-06-19 20:30:55 +00:00
|
|
|
"Breakpoint.*: foo2. .2 locations..*" \
|
|
|
|
"foo2 in mdlib"
|
|
|
|
|
|
|
|
+# Test GDB warns for shared libraris which have not been found.
|
2023-12-09 01:43:22 +00:00
|
|
|
+
|
2012-06-19 20:30:55 +00:00
|
|
|
+gdb_test "info sharedlibrary" "/${libname}.*"
|
2023-12-09 01:43:22 +00:00
|
|
|
+
|
2012-06-19 20:30:55 +00:00
|
|
|
+clean_restart ${executable}
|
|
|
|
+gdb_breakpoint "main"
|
|
|
|
+gdb_run_cmd
|
|
|
|
+set test "no warning for missing libraries"
|
|
|
|
+gdb_test_multiple "" $test {
|
|
|
|
+ -re "warning: Could not load shared library symbols for \[0-9\]+ libraries,.*\r\n$gdb_prompt $" {
|
|
|
|
+ fail $test
|
|
|
|
+ }
|
|
|
|
+ -re "Breakpoint \[0-9\]+, main .*\r\n$gdb_prompt $" {
|
|
|
|
+ pass $test
|
|
|
|
+ }
|
|
|
|
+}
|
2023-12-09 01:43:22 +00:00
|
|
|
+
|
2012-06-19 20:30:55 +00:00
|
|
|
+clean_restart ${executable}
|
|
|
|
+gdb_test_no_output "set solib-absolute-prefix /doESnotEXIST"
|
|
|
|
+gdb_breakpoint "main"
|
|
|
|
+gdb_run_cmd
|
|
|
|
+gdb_test "" "warning: Could not load shared library symbols for \[0-9\]+ libraries,.*\r\nBreakpoint \[0-9\]+, main .*" \
|
|
|
|
+ "warning for missing libraries"
|
2023-12-09 01:43:22 +00:00
|
|
|
+
|
|
|
|
gdb_exit
|