Blame SOURCES/gdb-core-open-vdso-warning.patch

2f9ed3
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
2f9ed3
From: Fedora GDB patches <invalid@email.com>
2f9ed3
Date: Fri, 27 Oct 2017 21:07:50 +0200
2f9ed3
Subject: gdb-core-open-vdso-warning.patch
2f9ed3
2f9ed3
;; Fix GNU/Linux core open: Can't read pathname for load map: Input/output error.
2f9ed3
;; Fix regression of undisplayed missing shared libraries caused by a fix for.
2f9ed3
;;=fedoratest: It should be in glibc: libc-alpha: <20091004161706.GA27450@.*>
2f9ed3
2f9ed3
http://sourceware.org/ml/gdb-patches/2009-10/msg00142.html
2f9ed3
Subject: [patch] Fix GNU/Linux core open: Can't read pathname for load map:  Input/output error.
2f9ed3
2f9ed3
[ New patch variant.  ]
2f9ed3
2f9ed3
commit 7d760051ffb8a23cdc51342d4e6243fbc462f73f
2f9ed3
Author: Ulrich Weigand <uweigand@de.ibm.com>
2f9ed3
Date:   Wed Sep 25 11:52:50 2013 +0000
2f9ed3
2f9ed3
diff --git a/gdb/testsuite/gdb.base/solib-symbol.exp b/gdb/testsuite/gdb.base/solib-symbol.exp
2f9ed3
--- a/gdb/testsuite/gdb.base/solib-symbol.exp
2f9ed3
+++ b/gdb/testsuite/gdb.base/solib-symbol.exp
2f9ed3
@@ -29,6 +29,7 @@ set testfile "solib-symbol-main"
2f9ed3
 set srcfile ${srcdir}/${subdir}/${testfile}.c
2f9ed3
 set binfile [standard_output_file ${testfile}]
2f9ed3
 set bin_flags [list debug shlib=${binfile_lib}]
2f9ed3
+set executable ${testfile}
2f9ed3
 
2f9ed3
 if [get_compiler_info] {
2f9ed3
     return -1
2f9ed3
@@ -72,8 +73,26 @@ gdb_test "br foo2" \
2f9ed3
 	 "Breakpoint.*: foo2. .2 locations..*" \
2f9ed3
 	 "foo2 in mdlib"
2f9ed3
 
2f9ed3
-gdb_exit
2f9ed3
+# Test GDB warns for shared libraris which have not been found.
2f9ed3
 
2f9ed3
-return 0
2f9ed3
+gdb_test "info sharedlibrary" "/${libname}.*"
2f9ed3
 
2f9ed3
+clean_restart ${executable}
2f9ed3
+gdb_breakpoint "main"
2f9ed3
+gdb_run_cmd
2f9ed3
+set test "no warning for missing libraries"
2f9ed3
+gdb_test_multiple "" $test {
2f9ed3
+    -re "warning: Could not load shared library symbols for \[0-9\]+ libraries,.*\r\n$gdb_prompt $" {
2f9ed3
+	fail $test
2f9ed3
+    }
2f9ed3
+    -re "Breakpoint \[0-9\]+, main .*\r\n$gdb_prompt $" {
2f9ed3
+	pass $test
2f9ed3
+    }
2f9ed3
+}
2f9ed3
 
2f9ed3
+clean_restart ${executable}
2f9ed3
+gdb_test_no_output "set solib-absolute-prefix /doESnotEXIST"
2f9ed3
+gdb_breakpoint "main"
2f9ed3
+gdb_run_cmd
2f9ed3
+gdb_test "" "warning: Could not load shared library symbols for \[0-9\]+ libraries,.*\r\nBreakpoint \[0-9\]+, main .*" \
2f9ed3
+	 "warning for missing libraries"