You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
229 lines
7.6 KiB
229 lines
7.6 KiB
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001 |
|
From: Fedora GDB patches <invalid@email.com> |
|
Date: Fri, 27 Oct 2017 21:07:50 +0200 |
|
Subject: gdb-physname-pr11734-test.patch |
|
|
|
;; Fix regressions on C++ names resolving (PR 11734, PR 12273, Keith Seitz). |
|
;;=fedoratest |
|
|
|
http://sourceware.org/ml/gdb-patches/2010-12/msg00263.html |
|
|
|
diff --git a/gdb/testsuite/gdb.cp/pr11734-1.cc b/gdb/testsuite/gdb.cp/pr11734-1.cc |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.cp/pr11734-1.cc |
|
@@ -0,0 +1,29 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2010 Free Software Foundation, Inc. |
|
+ |
|
+ This program is free software; you can redistribute it and/or modify |
|
+ it under the terms of the GNU General Public License as published by |
|
+ the Free Software Foundation; either version 3 of the License, or |
|
+ (at your option) any later version. |
|
+ |
|
+ This program is distributed in the hope that it will be useful, |
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+ GNU General Public License for more details. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+ Please email any bugs, comments, and/or additions to this file to: |
|
+ bug-gdb@gnu.org */ |
|
+ |
|
+#include "pr11734.h" |
|
+ |
|
+int |
|
+main () |
|
+{ |
|
+ pr11734 *p = new pr11734; |
|
+ p->foo (); |
|
+ return 0; |
|
+} |
|
diff --git a/gdb/testsuite/gdb.cp/pr11734-2.cc b/gdb/testsuite/gdb.cp/pr11734-2.cc |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.cp/pr11734-2.cc |
|
@@ -0,0 +1,26 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2010 Free Software Foundation, Inc. |
|
+ |
|
+ This program is free software; you can redistribute it and/or modify |
|
+ it under the terms of the GNU General Public License as published by |
|
+ the Free Software Foundation; either version 3 of the License, or |
|
+ (at your option) any later version. |
|
+ |
|
+ This program is distributed in the hope that it will be useful, |
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+ GNU General Public License for more details. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+ Please email any bugs, comments, and/or additions to this file to: |
|
+ bug-gdb@gnu.org */ |
|
+ |
|
+#include "pr11734.h" |
|
+ |
|
+void |
|
+pr11734::foo(void) |
|
+{ |
|
+} |
|
diff --git a/gdb/testsuite/gdb.cp/pr11734-3.cc b/gdb/testsuite/gdb.cp/pr11734-3.cc |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.cp/pr11734-3.cc |
|
@@ -0,0 +1,26 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2010 Free Software Foundation, Inc. |
|
+ |
|
+ This program is free software; you can redistribute it and/or modify |
|
+ it under the terms of the GNU General Public License as published by |
|
+ the Free Software Foundation; either version 3 of the License, or |
|
+ (at your option) any later version. |
|
+ |
|
+ This program is distributed in the hope that it will be useful, |
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+ GNU General Public License for more details. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+ Please email any bugs, comments, and/or additions to this file to: |
|
+ bug-gdb@gnu.org */ |
|
+ |
|
+#include "pr11734.h" |
|
+ |
|
+void |
|
+pr11734::foo (int a) |
|
+{ |
|
+} |
|
diff --git a/gdb/testsuite/gdb.cp/pr11734-4.cc b/gdb/testsuite/gdb.cp/pr11734-4.cc |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.cp/pr11734-4.cc |
|
@@ -0,0 +1,26 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2010 Free Software Foundation, Inc. |
|
+ |
|
+ This program is free software; you can redistribute it and/or modify |
|
+ it under the terms of the GNU General Public License as published by |
|
+ the Free Software Foundation; either version 3 of the License, or |
|
+ (at your option) any later version. |
|
+ |
|
+ This program is distributed in the hope that it will be useful, |
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+ GNU General Public License for more details. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+ Please email any bugs, comments, and/or additions to this file to: |
|
+ bug-gdb@gnu.org */ |
|
+ |
|
+#include "pr11734.h" |
|
+ |
|
+void |
|
+pr11734::foo (char *a) |
|
+{ |
|
+} |
|
diff --git a/gdb/testsuite/gdb.cp/pr11734.exp b/gdb/testsuite/gdb.cp/pr11734.exp |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.cp/pr11734.exp |
|
@@ -0,0 +1,55 @@ |
|
+# Copyright 2010 Free Software Foundation, Inc. |
|
+# |
|
+# Contributed by Red Hat, originally written by Keith Seitz. |
|
+# |
|
+# This program is free software; you can redistribute it and/or modify |
|
+# it under the terms of the GNU General Public License as published by |
|
+# the Free Software Foundation; either version 3 of the License, or |
|
+# (at your option) any later version. |
|
+# |
|
+# This program is distributed in the hope that it will be useful, |
|
+# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+# GNU General Public License for more details. |
|
+# |
|
+# You should have received a copy of the GNU General Public License |
|
+# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+# This file is part of the gdb testsuite. |
|
+ |
|
+if { [skip_cplus_tests] } { continue } |
|
+ |
|
+set testfile "pr11734" |
|
+set class $testfile |
|
+ |
|
+set srcfiles {} |
|
+for {set i 1} {$i < 5} {incr i} { |
|
+ lappend srcfiles $testfile-$i.cc |
|
+} |
|
+ |
|
+prepare_for_testing pr11734 $testfile $srcfiles {c++ debug} |
|
+ |
|
+if {![runto_main]} { |
|
+ perror "couldn't run to breakpoint" |
|
+ continue |
|
+} |
|
+ |
|
+# An array holding the overload types for the method pr11734::foo. The |
|
+# first element is the overloaded method parameter. The second element |
|
+# is the expected source file number, e.g. "pr11734-?.cc". |
|
+array set tests { |
|
+ "char*" 4 |
|
+ "int" 3 |
|
+ "" 2 |
|
+} |
|
+ |
|
+# Test each overload instance twice: once quoted, once unquoted |
|
+foreach ovld [array names tests] { |
|
+ set method "${class}::foo\($ovld\)" |
|
+ set result "Breakpoint (\[0-9\]).*file .*/$class-$tests($ovld).*" |
|
+ gdb_test "break $method" $result |
|
+ gdb_test "break '$method'" $result |
|
+} |
|
+ |
|
+gdb_exit |
|
+return 0 |
|
diff --git a/gdb/testsuite/gdb.cp/pr11734.h b/gdb/testsuite/gdb.cp/pr11734.h |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.cp/pr11734.h |
|
@@ -0,0 +1,27 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2010 Free Software Foundation, Inc. |
|
+ |
|
+ This program is free software; you can redistribute it and/or modify |
|
+ it under the terms of the GNU General Public License as published by |
|
+ the Free Software Foundation; either version 3 of the License, or |
|
+ (at your option) any later version. |
|
+ |
|
+ This program is distributed in the hope that it will be useful, |
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+ GNU General Public License for more details. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+ Please email any bugs, comments, and/or additions to this file to: |
|
+ bug-gdb@gnu.org */ |
|
+ |
|
+class pr11734 |
|
+{ |
|
+ public: |
|
+ void foo (); |
|
+ void foo (int); |
|
+ void foo (char *); |
|
+};
|
|
|