4c2ad1
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4c2ad1
From: Jeff Johnston <jjohnstn@redhat.com>
4c2ad1
Date: Fri, 27 Oct 2017 21:07:50 +0200
4c2ad1
Subject: gdb-6.3-inheritancetest-20050726.patch
4c2ad1
4c2ad1
;; Verify printing of inherited members test
4c2ad1
;;=fedoratest
4c2ad1
4c2ad1
2005-07-26  Jeff Johnston  <jjohnstn@redhat.com>
4c2ad1
4c2ad1
	* gdb.cp/b146835.exp: New testcase.
4c2ad1
	* gdb.cp/b146835.cc: Ditto.
4c2ad1
	* gdb.cp/b146835b.cc: Ditto.
4c2ad1
	* gdb.cp/b146835.h: Ditto.
4c2ad1
4c2ad1
diff --git a/gdb/testsuite/gdb.cp/b146835.cc b/gdb/testsuite/gdb.cp/b146835.cc
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.cp/b146835.cc
4c2ad1
@@ -0,0 +1,32 @@
4c2ad1
+#include "b146835.h"
4c2ad1
+#include <iostream>
4c2ad1
+
4c2ad1
+class F : public C {
4c2ad1
+
4c2ad1
+protected:
4c2ad1
+
4c2ad1
+   virtual void funcA (unsigned long a, B *b);
4c2ad1
+   virtual void funcB (E *e);
4c2ad1
+   virtual void funcC (unsigned long x, bool y);
4c2ad1
+
4c2ad1
+   char *s1, *s2;
4c2ad1
+   bool b1;
4c2ad1
+   int k;
4c2ad1
+
4c2ad1
+public:
4c2ad1
+   void foo() {
4c2ad1
+       std::cout << "foo" << std::endl;
4c2ad1
+   }
4c2ad1
+};
4c2ad1
+
4c2ad1
+
4c2ad1
+void F::funcA (unsigned long a, B *b) {}
4c2ad1
+void F::funcB (E *e) {}
4c2ad1
+void F::funcC (unsigned long x, bool y) {}
4c2ad1
+
4c2ad1
+int  main()
4c2ad1
+{
4c2ad1
+   F f;
4c2ad1
+   f.foo();
4c2ad1
+}
4c2ad1
+
4c2ad1
diff --git a/gdb/testsuite/gdb.cp/b146835.exp b/gdb/testsuite/gdb.cp/b146835.exp
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.cp/b146835.exp
4c2ad1
@@ -0,0 +1,47 @@
4c2ad1
+# This testcase is part of GDB, the GNU debugger.
4c2ad1
+
4c2ad1
+# Copyright 2005 Free Software Foundation, Inc.
4c2ad1
+
4c2ad1
+# This program is free software; you can redistribute it and/or modify
4c2ad1
+# it under the terms of the GNU General Public License as published by
4c2ad1
+# the Free Software Foundation; either version 2 of the License, or
4c2ad1
+# (at your option) any later version.
4c2ad1
+#
4c2ad1
+# This program is distributed in the hope that it will be useful,
4c2ad1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c2ad1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c2ad1
+# GNU General Public License for more details.
4c2ad1
+#
4c2ad1
+# You should have received a copy of the GNU General Public License
4c2ad1
+# along with this program; if not, write to the Free Software
4c2ad1
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
4c2ad1
+
4c2ad1
+# Check that GDB can properly print an inherited member variable
4c2ad1
+# (Bugzilla 146835)
4c2ad1
+
4c2ad1
+set testfile "b146835"
4c2ad1
+set srcfile ${testfile}.cc
4c2ad1
+set srcfile2 ${testfile}b.cc
4c2ad1
+set binfile [standard_output_file ${testfile}]
4c2ad1
+if {[gdb_compile "${srcdir}/${subdir}/${srcfile} ${srcdir}/${subdir}/${srcfile2}" "${binfile}" executable {debug c++}] != "" } {
4c2ad1
+    return -1
4c2ad1
+}
4c2ad1
+
4c2ad1
+gdb_exit
4c2ad1
+gdb_start
4c2ad1
+gdb_reinitialize_dir $srcdir/$subdir
4c2ad1
+gdb_load ${binfile}
4c2ad1
+
4c2ad1
+#
4c2ad1
+# Run to `main' where we begin our tests.
4c2ad1
+#
4c2ad1
+
4c2ad1
+if ![runto_main] then {
4c2ad1
+    gdb_suppress_tests
4c2ad1
+}
4c2ad1
+
4c2ad1
+gdb_test "break 'F::foo()'" ""
4c2ad1
+gdb_continue_to_breakpoint "First line foo"
4c2ad1
+
4c2ad1
+# Verify that we can access the inherited member d
4c2ad1
+gdb_test "p d" " = \\(D \\*\\) *0x0" "Verify inherited member d accessible"
4c2ad1
diff --git a/gdb/testsuite/gdb.cp/b146835.h b/gdb/testsuite/gdb.cp/b146835.h
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.cp/b146835.h
4c2ad1
@@ -0,0 +1,36 @@
4c2ad1
+
4c2ad1
+class A {
4c2ad1
+
4c2ad1
+protected:
4c2ad1
+
4c2ad1
+   virtual void funcA (unsigned long a, class B *b) = 0;
4c2ad1
+   virtual void funcB (class E *e) = 0;
4c2ad1
+   virtual void funcC (unsigned long x, bool y) = 0;
4c2ad1
+
4c2ad1
+   void funcD (class E *e, class D* d);
4c2ad1
+   virtual void funcE (E *e, D *d);
4c2ad1
+   virtual void funcF (unsigned long x, D *d);
4c2ad1
+};
4c2ad1
+
4c2ad1
+
4c2ad1
+class C : public A {
4c2ad1
+
4c2ad1
+protected:
4c2ad1
+
4c2ad1
+   int x;
4c2ad1
+   class K *k;
4c2ad1
+   class H *h;
4c2ad1
+
4c2ad1
+   D *d;
4c2ad1
+
4c2ad1
+   class W *w;
4c2ad1
+   class N *n;
4c2ad1
+   class L *l;
4c2ad1
+   unsigned long *r;
4c2ad1
+
4c2ad1
+public:
4c2ad1
+
4c2ad1
+   C();
4c2ad1
+   int z (char *s);
4c2ad1
+   virtual ~C();
4c2ad1
+};
4c2ad1
diff --git a/gdb/testsuite/gdb.cp/b146835b.cc b/gdb/testsuite/gdb.cp/b146835b.cc
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.cp/b146835b.cc
4c2ad1
@@ -0,0 +1,11 @@
4c2ad1
+#include "b146835.h"
4c2ad1
+
4c2ad1
+C::C() { d = 0; x = 3; }
4c2ad1
+
4c2ad1
+int C::z (char *s) { return 0; }
4c2ad1
+
4c2ad1
+C::~C() {}
4c2ad1
+
4c2ad1
+void A::funcD (class E *e, class D *d) {}
4c2ad1
+void A::funcE (E *e, D *d) {}
4c2ad1
+void A::funcF (unsigned long x, D *d) {}