Blame SOURCES/gdb-rhbz1186476-internal-error-unqualified-name-re-set-test.patch

475228
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
475228
From: Fedora GDB patches <invalid@email.com>
475228
Date: Fri, 27 Oct 2017 21:07:50 +0200
475228
Subject: gdb-rhbz1186476-internal-error-unqualified-name-re-set-test.patch
475228
475228
;; Fix 'backport GDB 7.4 fix to RHEL 6.6 GDB' [Original Sourceware bug
475228
;; description: 'C++ (and objc): Internal error on unqualified name
475228
;; re-set', PR 11657] (RH BZ 1186476).
475228
;;=fedoratest
475228
475228
Comments from Sergio Durigan Junior:
475228
475228
  The "proper" fix for this whole problem would be to backport the
475228
  "ambiguous linespec" patch series.  However, it is really not
475228
  recommended to do that for RHEL GDB, because the patch series is too
475228
  big and could introduce unwanted regressions.  Instead, what we
475228
  chose to do was to replace the gdb_assert call by a warning (which
475228
  allows the user to continue the debugging session), and tell the
475228
  user that, although more than one location was found for his/her
475228
  breakpoint, only one will be used.
475228
475228
diff --git a/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set-main.cc b/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set-main.cc
475228
new file mode 100644
475228
--- /dev/null
475228
+++ b/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set-main.cc
475228
@@ -0,0 +1,22 @@
475228
+/* This testcase is part of GDB, the GNU debugger.
475228
+
475228
+   Copyright 2015 Free Software Foundation, Inc.
475228
+
475228
+   This program is free software; you can redistribute it and/or modify
475228
+   it under the terms of the GNU General Public License as published by
475228
+   the Free Software Foundation; either version 3 of the License, or
475228
+   (at your option) any later version.
475228
+
475228
+   This program is distributed in the hope that it will be useful,
475228
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
475228
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
475228
+   GNU General Public License for more details.
475228
+
475228
+   You should have received a copy of the GNU General Public License
475228
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
475228
+
475228
+int
475228
+main (int argc, char *argv[])
475228
+{
475228
+  return 0;
475228
+}
475228
diff --git a/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set.cc b/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set.cc
475228
new file mode 100644
475228
--- /dev/null
475228
+++ b/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set.cc
475228
@@ -0,0 +1,26 @@
475228
+/* This testcase is part of GDB, the GNU debugger.
475228
+
475228
+   Copyright 2015 Free Software Foundation, Inc.
475228
+
475228
+   This program is free software; you can redistribute it and/or modify
475228
+   it under the terms of the GNU General Public License as published by
475228
+   the Free Software Foundation; either version 3 of the License, or
475228
+   (at your option) any later version.
475228
+
475228
+   This program is distributed in the hope that it will be useful,
475228
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
475228
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
475228
+   GNU General Public License for more details.
475228
+
475228
+   You should have received a copy of the GNU General Public License
475228
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
475228
+
475228
+class C
475228
+  {
475228
+    public:
475228
+      C () {}
475228
+      C (int x) {}
475228
+  };
475228
+
475228
+C a;
475228
+C b (1);
475228
diff --git a/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set.exp b/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set.exp
475228
new file mode 100644
475228
--- /dev/null
475228
+++ b/gdb/testsuite/gdb.cp/gdb-rhbz1186476-internal-error-unqualified-name-re-set.exp
475228
@@ -0,0 +1,51 @@
475228
+# Copyright 2015 Free Software Foundation, Inc.
475228
+
475228
+# This program is free software; you can redistribute it and/or modify
475228
+# it under the terms of the GNU General Public License as published by
475228
+# the Free Software Foundation; either version 3 of the License, or
475228
+# (at your option) any later version.
475228
+#
475228
+# This program is distributed in the hope that it will be useful,
475228
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
475228
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
475228
+# GNU General Public License for more details.
475228
+#
475228
+# You should have received a copy of the GNU General Public License
475228
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
475228
+
475228
+if { [skip_cplus_tests] } { continue }
475228
+if { [skip_shlib_tests] } { continue }
475228
+if { [is_remote target] } { continue }
475228
+if { [target_info exists use_gdb_stub] } { continue }
475228
+
475228
+set testfile gdb-rhbz1186476-internal-error-unqualified-name-re-set-main
475228
+set srcfile $testfile.cc
475228
+set executable $testfile
475228
+set binfile [standard_output_file $executable]
475228
+
475228
+set libtestfile gdb-rhbz1186476-internal-error-unqualified-name-re-set
475228
+set libsrcfile $libtestfile.cc
475228
+set sofile [standard_output_file lib$libtestfile.so]
475228
+
475228
+# Create and source the file that provides information about the compiler
475228
+# used to compile the test case.
475228
+if [get_compiler_info "c++"] {
475228
+    return -1
475228
+}
475228
+
475228
+if { [gdb_compile_shlib $srcdir/$subdir/$libsrcfile $sofile {debug c++ "additional_flags=-fPIC"}] != ""
475228
+     || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list additional_flags=-Wl,-rpath,[file dirname ${sofile}] "c++" shlib=${sofile} ]] != ""} {
475228
+    untested $libtestfile.exp
475228
+    return -1
475228
+}
475228
+
475228
+clean_restart $executable
475228
+
475228
+gdb_test_no_output "set breakpoint pending on"
475228
+# gdb_breakpoint would print a failure because of some warning messages
475228
+gdb_test "break C::C" "Breakpoint $decimal \\(C::C\\) pending."
475228
+
475228
+#gdb_test "run" "warning: Found more than one location for breakpoint #$decimal; only the first location will be used.(\r\n)+Breakpoint $decimal, C::C.*"
475228
+gdb_test "run"
475228
+
475228
+gdb_test "info break" " in C::C\\(\\) at .* in C::C\\(int\\) at .*"