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

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