Blame SOURCES/gdb-6.5-bz218379-ppc-solib-trampoline-test.patch

b94e32
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
b94e32
From: Fedora GDB patches <invalid@email.com>
b94e32
Date: Fri, 27 Oct 2017 21:07:50 +0200
b94e32
Subject: gdb-6.5-bz218379-ppc-solib-trampoline-test.patch
b94e32
b94e32
;; Test sideeffects of skipping ppc .so libs trampolines (BZ 218379).
b94e32
;;=fedoratest
b94e32
b94e32
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=218379
b94e32
b94e32
diff --git a/gdb/testsuite/gdb.base/step-over-trampoline.c b/gdb/testsuite/gdb.base/step-over-trampoline.c
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/step-over-trampoline.c
b94e32
@@ -0,0 +1,28 @@
b94e32
+/* This testcase is part of GDB, the GNU debugger.
b94e32
+
b94e32
+   Copyright 2006 Free Software Foundation, Inc.
b94e32
+
b94e32
+   This program is free software; you can redistribute it and/or modify
b94e32
+   it under the terms of the GNU General Public License as published by
b94e32
+   the Free Software Foundation; either version 2 of the License, or
b94e32
+   (at your option) any later version.
b94e32
+
b94e32
+   This program is distributed in the hope that it will be useful,
b94e32
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+   GNU General Public License for more details.
b94e32
+
b94e32
+   You should have received a copy of the GNU General Public License
b94e32
+   along with this program; if not, write to the Free Software
b94e32
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
b94e32
+
b94e32
+   Please email any bugs, comments, and/or additions to this file to:
b94e32
+   bug-gdb@prep.ai.mit.edu  */
b94e32
+
b94e32
+#include <stdio.h>
b94e32
+
b94e32
+int main (void)
b94e32
+{
b94e32
+	puts ("hello world");
b94e32
+	return 0;
b94e32
+}
b94e32
diff --git a/gdb/testsuite/gdb.base/step-over-trampoline.exp b/gdb/testsuite/gdb.base/step-over-trampoline.exp
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/step-over-trampoline.exp
b94e32
@@ -0,0 +1,59 @@
b94e32
+# Copyright 2006 Free Software Foundation, Inc.
b94e32
+
b94e32
+# This program is free software; you can redistribute it and/or modify
b94e32
+# it under the terms of the GNU General Public License as published by
b94e32
+# the Free Software Foundation; either version 2 of the License, or
b94e32
+# (at your option) any later version.
b94e32
+#
b94e32
+# This program is distributed in the hope that it will be useful,
b94e32
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+# GNU General Public License for more details.
b94e32
+#
b94e32
+# You should have received a copy of the GNU General Public License
b94e32
+# along with this program; if not, write to the Free Software
b94e32
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
b94e32
+
b94e32
+if {[use_gdb_stub]} {
b94e32
+    untested "skipping test because of use_gdb_stub"
b94e32
+    return -1
b94e32
+}
b94e32
+
b94e32
+if $tracelevel then {
b94e32
+    strace $tracelevel
b94e32
+}
b94e32
+
b94e32
+set testfile step-over-trampoline
b94e32
+set srcfile ${testfile}.c
b94e32
+set binfile [standard_output_file ${testfile}]
b94e32
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b94e32
+    untested "Couldn't compile test program"
b94e32
+    return -1
b94e32
+}
b94e32
+
b94e32
+# Get things started.
b94e32
+
b94e32
+gdb_exit
b94e32
+gdb_start
b94e32
+gdb_reinitialize_dir $srcdir/$subdir
b94e32
+gdb_load ${binfile}
b94e32
+
b94e32
+# For C programs, "start" should stop in main().
b94e32
+
b94e32
+gdb_test "start" \
b94e32
+         "main \\(\\) at .*$srcfile.*" \
b94e32
+         "start"
b94e32
+
b94e32
+# main () at hello2.c:5
b94e32
+# 5		puts("hello world\n");
b94e32
+# (gdb) next
b94e32
+# 0x100007e0 in call___do_global_ctors_aux ()
b94e32
+
b94e32
+gdb_test_multiple "next" "invalid `next' output" {
b94e32
+	-re "\nhello world.*return 0;.*" {
b94e32
+		pass "stepped over"
b94e32
+	}
b94e32
+	-re " in call___do_global_ctors_aux \\(\\).*" {
b94e32
+		fail "stepped into trampoline"
b94e32
+	}
b94e32
+}