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

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