Blame SOURCES/gdb-lineno-makeup-test.patch

4a80f0
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4a80f0
From: Fedora GDB patches <invalid@email.com>
4a80f0
Date: Fri, 27 Oct 2017 21:07:50 +0200
4a80f0
Subject: gdb-lineno-makeup-test.patch
4a80f0
4a80f0
;; Testcase for "Do not make up line information" fix by Daniel Jacobowitz.
4a80f0
;;=fedoratest
4a80f0
4a80f0
New testcase for:
4a80f0
https://bugzilla.redhat.com/show_bug.cgi?id=466222
4a80f0
	(for the first / customer recommended fix)
4a80f0
and the upstream fix:
4a80f0
http://sourceware.org/ml/gdb-patches/2006-11/msg00253.html
4a80f0
	[rfc] Do not make up line information
4a80f0
http://sourceware.org/ml/gdb-cvs/2006-11/msg00127.html
4a80f0
4a80f0
diff --git a/gdb/testsuite/gdb.base/lineno-makeup-func.c b/gdb/testsuite/gdb.base/lineno-makeup-func.c
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.base/lineno-makeup-func.c
4a80f0
@@ -0,0 +1,21 @@
4a80f0
+/* This testcase is part of GDB, the GNU debugger.
4a80f0
+
4a80f0
+   Copyright 2009 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+   This program is free software; you can redistribute it and/or modify
4a80f0
+   it under the terms of the GNU General Public License as published by
4a80f0
+   the Free Software Foundation; either version 3 of the License, or
4a80f0
+   (at your option) any later version.
4a80f0
+
4a80f0
+   This program is distributed in the hope that it will be useful,
4a80f0
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+   GNU General Public License for more details.
4a80f0
+
4a80f0
+   You should have received a copy of the GNU General Public License
4a80f0
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
4a80f0
+
4a80f0
+void
4a80f0
+func (void)
4a80f0
+{
4a80f0
+}
4a80f0
diff --git a/gdb/testsuite/gdb.base/lineno-makeup.c b/gdb/testsuite/gdb.base/lineno-makeup.c
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.base/lineno-makeup.c
4a80f0
@@ -0,0 +1,35 @@
4a80f0
+/* This testcase is part of GDB, the GNU debugger.
4a80f0
+
4a80f0
+   Copyright 2009 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+   This program is free software; you can redistribute it and/or modify
4a80f0
+   it under the terms of the GNU General Public License as published by
4a80f0
+   the Free Software Foundation; either version 3 of the License, or
4a80f0
+   (at your option) any later version.
4a80f0
+
4a80f0
+   This program is distributed in the hope that it will be useful,
4a80f0
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+   GNU General Public License for more details.
4a80f0
+
4a80f0
+   You should have received a copy of the GNU General Public License
4a80f0
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
4a80f0
+
4a80f0
+/* DW_AT_low_pc-DW_AT_high_pc should cover the function without line number
4a80f0
+   information (.debug_line) so we cannot use an external object file.
4a80f0
+
4a80f0
+   It must not be just a label as it would alias on the next function even for
4a80f0
+   correct GDB.  Therefore some stub data must be placed there.
4a80f0
+
4a80f0
+   We need to provide a real stub function body as at least s390
4a80f0
+   (s390_analyze_prologue) would skip the whole body till reaching `main'.  */
4a80f0
+
4a80f0
+extern void func (void);
4a80f0
+asm ("func: .incbin \"" BINFILENAME "\"");
4a80f0
+
4a80f0
+int
4a80f0
+main (void)
4a80f0
+{
4a80f0
+  func ();
4a80f0
+  return 0;
4a80f0
+}
4a80f0
diff --git a/gdb/testsuite/gdb.base/lineno-makeup.exp b/gdb/testsuite/gdb.base/lineno-makeup.exp
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.base/lineno-makeup.exp
4a80f0
@@ -0,0 +1,78 @@
4a80f0
+# Copyright 2009 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+# This program is free software; you can redistribute it and/or modify
4a80f0
+# it under the terms of the GNU General Public License as published by
4a80f0
+# the Free Software Foundation; either version 3 of the License, or
4a80f0
+# (at your option) any later version.
4a80f0
+#
4a80f0
+# This program is distributed in the hope that it will be useful,
4a80f0
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+# GNU General Public License for more details.
4a80f0
+#
4a80f0
+# You should have received a copy of the GNU General Public License
4a80f0
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
4a80f0
+
4a80f0
+set testfile "lineno-makeup"
4a80f0
+set srcfuncfile ${testfile}-func.c
4a80f0
+set srcfile ${testfile}.c
4a80f0
+set objfuncfile [standard_output_file ${testfile}-func.o]
4a80f0
+set binfuncfile [standard_output_file ${testfile}-func.bin]
4a80f0
+set binfile [standard_output_file ${testfile}]
4a80f0
+
4a80f0
+if { [gdb_compile "${srcdir}/${subdir}/${srcfuncfile}" "${objfuncfile}" object {}] != "" } {
4a80f0
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
4a80f0
+}
4a80f0
+
4a80f0
+set objcopy [catch "exec objcopy -O binary --only-section .text ${objfuncfile} ${binfuncfile}" output]
4a80f0
+verbose -log "objcopy=$objcopy: $output"
4a80f0
+if { $objcopy != 0 } {
4a80f0
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
4a80f0
+}
4a80f0
+set binfuncfilesize [file size $binfuncfile]
4a80f0
+verbose -log "file size $binfuncfile = $binfuncfilesize"
4a80f0
+
4a80f0
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug additional_flags=-DBINFILENAME=\"$binfuncfile\"]] != "" } {
4a80f0
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
4a80f0
+}
4a80f0
+
4a80f0
+gdb_exit
4a80f0
+gdb_start
4a80f0
+gdb_reinitialize_dir $srcdir/$subdir
4a80f0
+gdb_load ${binfile}
4a80f0
+
4a80f0
+set b_addr ""
4a80f0
+set test "break func"
4a80f0
+gdb_test_multiple $test $test {
4a80f0
+    -re "Breakpoint \[0-9\]+ at (0x\[0-9a-f\]+)\r\n$gdb_prompt $" {
4a80f0
+	set b_addr $expect_out(1,string)
4a80f0
+	pass $test
4a80f0
+    }
4a80f0
+    -re "Breakpoint \[0-9\]+ at (0x\[0-9a-f\]+): .*\r\n$gdb_prompt $" {
4a80f0
+	set b_addr $expect_out(1,string)
4a80f0
+	fail $test
4a80f0
+    }
4a80f0
+}
4a80f0
+verbose -log "b_addr=<$b_addr>"
4a80f0
+
4a80f0
+set p_addr ""
4a80f0
+set test "print func"
4a80f0
+gdb_test_multiple $test $test {
4a80f0
+    -re "\\$\[0-9\]+ = {<text variable, no debug info>} (0x\[0-9a-f\]+) <func>\r\n$gdb_prompt $" {
4a80f0
+	set p_addr $expect_out(1,string)
4a80f0
+	pass $test
4a80f0
+    }
4a80f0
+}
4a80f0
+verbose -log "p_addr=<$p_addr>"
4a80f0
+
4a80f0
+set test "break address belongs to func"
4a80f0
+if {$b_addr == $p_addr} {
4a80f0
+    pass "$test (exact match)"
4a80f0
+} else {
4a80f0
+    set skip [expr $b_addr - $p_addr]
4a80f0
+    if {$skip > 0 && $skip < $binfuncfilesize} {
4a80f0
+	pass "$test (prologue skip by $skip bytes)"
4a80f0
+    } else {
4a80f0
+	fail $test
4a80f0
+    }
4a80f0
+}