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

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