a8767b37e5
- chmod +x on the generate-*.sh script.s - Remove references to gdb-8.0.1 from 'sources' and '.gitignore'. - Regenerate first line of the patches (remove commit hash). - Fix empty Source line.
151 lines
5.4 KiB
Diff
151 lines
5.4 KiB
Diff
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
|
From: Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
Date: Fri, 27 Oct 2017 21:07:50 +0200
|
|
Subject: gdb-6.5-bz109921-DW_AT_decl_file-test.patch
|
|
|
|
FileName: gdb-6.5-bz109921-DW_AT_decl_file-test.patch
|
|
|
|
;; Find symbols properly at their original (included) file (BZ 109921).
|
|
;;=fedoratest
|
|
|
|
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=109921
|
|
|
|
It is duplicite to its upstream variant:
|
|
http://sourceware.org/ml/gdb-cvs/2007-01/msg00157.html
|
|
http://sourceware.org/ml/gdb-patches/2007-01/msg00434.html
|
|
2007-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
* gdb.base/included.c, gdb.base/included.exp,
|
|
gdb.base/included.h: New files.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
2007-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
* gdb.dwarf2/dw2-included.exp, gdb.dwarf2/dw2-included.c,
|
|
gdb.dwarf2/dw2-included.h: New files.
|
|
---
|
|
gdb/testsuite/gdb.dwarf2/dw2-included.c | 26 +++++++++++++++++
|
|
gdb/testsuite/gdb.dwarf2/dw2-included.exp | 47 +++++++++++++++++++++++++++++++
|
|
gdb/testsuite/gdb.dwarf2/dw2-included.h | 20 +++++++++++++
|
|
3 files changed, 93 insertions(+)
|
|
create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-included.c
|
|
create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-included.exp
|
|
create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-included.h
|
|
|
|
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-included.c b/gdb/testsuite/gdb.dwarf2/dw2-included.c
|
|
new file mode 100644
|
|
index 0000000000..28e54fb932
|
|
--- /dev/null
|
|
+++ b/gdb/testsuite/gdb.dwarf2/dw2-included.c
|
|
@@ -0,0 +1,26 @@
|
|
+/* This testcase is part of GDB, the GNU debugger.
|
|
+
|
|
+ Copyright 2006 Free Software Foundation, Inc.
|
|
+
|
|
+ This program is free software; you can redistribute it and/or modify
|
|
+ it under the terms of the GNU General Public License as published by
|
|
+ the Free Software Foundation; either version 2 of the License, or
|
|
+ (at your option) any later version.
|
|
+
|
|
+ This program is distributed in the hope that it will be useful,
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ GNU General Public License for more details.
|
|
+
|
|
+ You should have received a copy of the GNU General Public License
|
|
+ along with this program; if not, write to the Free Software
|
|
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
+ USA. */
|
|
+
|
|
+#include "dw2-included.h"
|
|
+
|
|
+int
|
|
+main()
|
|
+{
|
|
+ return 0;
|
|
+}
|
|
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-included.exp b/gdb/testsuite/gdb.dwarf2/dw2-included.exp
|
|
new file mode 100644
|
|
index 0000000000..9aaf8e9772
|
|
--- /dev/null
|
|
+++ b/gdb/testsuite/gdb.dwarf2/dw2-included.exp
|
|
@@ -0,0 +1,47 @@
|
|
+# Copyright 2006 Free Software Foundation, Inc.
|
|
+
|
|
+# This program is free software; you can redistribute it and/or modify
|
|
+# it under the terms of the GNU General Public License as published by
|
|
+# the Free Software Foundation; either version 2 of the License, or
|
|
+# (at your option) any later version.
|
|
+#
|
|
+# This program is distributed in the hope that it will be useful,
|
|
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+# GNU General Public License for more details.
|
|
+#
|
|
+# You should have received a copy of the GNU General Public License
|
|
+# along with this program; if not, write to the Free Software
|
|
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
+
|
|
+# Minimal DWARF-2 unit test
|
|
+
|
|
+# This test can only be run on targets which support DWARF-2.
|
|
+# For now pick a sampling of likely targets.
|
|
+if {![istarget *-*-linux*]
|
|
+ && ![istarget *-*-gnu*]
|
|
+ && ![istarget *-*-elf*]
|
|
+ && ![istarget *-*-openbsd*]
|
|
+ && ![istarget arm-*-eabi*]
|
|
+ && ![istarget powerpc-*-eabi*]} {
|
|
+ return 0
|
|
+}
|
|
+
|
|
+set testfile "dw2-included"
|
|
+set srcfile ${testfile}.c
|
|
+set binfile [standard_output_file ${testfile}]
|
|
+
|
|
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
|
+ return -1
|
|
+}
|
|
+
|
|
+gdb_exit
|
|
+gdb_start
|
|
+gdb_reinitialize_dir $srcdir/$subdir
|
|
+gdb_load ${binfile}
|
|
+
|
|
+gdb_test "set listsize 1" ""
|
|
+gdb_test "list integer" "int integer;\r"
|
|
+gdb_test "ptype integer" "type = int\r"
|
|
+# Path varies depending on the build location.
|
|
+gdb_test "info variables integer" "\r\nFile \[^\r\n\]*/gdb.dwarf2/dw2-included.h:\r\nint integer;\r"
|
|
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-included.h b/gdb/testsuite/gdb.dwarf2/dw2-included.h
|
|
new file mode 100644
|
|
index 0000000000..f31348ab4f
|
|
--- /dev/null
|
|
+++ b/gdb/testsuite/gdb.dwarf2/dw2-included.h
|
|
@@ -0,0 +1,20 @@
|
|
+/* This testcase is part of GDB, the GNU debugger.
|
|
+
|
|
+ Copyright 2006 Free Software Foundation, Inc.
|
|
+
|
|
+ This program is free software; you can redistribute it and/or modify
|
|
+ it under the terms of the GNU General Public License as published by
|
|
+ the Free Software Foundation; either version 2 of the License, or
|
|
+ (at your option) any later version.
|
|
+
|
|
+ This program is distributed in the hope that it will be useful,
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ GNU General Public License for more details.
|
|
+
|
|
+ You should have received a copy of the GNU General Public License
|
|
+ along with this program; if not, write to the Free Software
|
|
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
+ USA. */
|
|
+
|
|
+int integer;
|
|
--
|
|
2.14.3
|
|
|