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

f9426a
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=218379
f9426a
f9426a
f9426a
--- /dev/null	2006-12-17 14:18:21.881669220 -0500
f9426a
+++ gdb-6.5/gdb/testsuite/gdb.base/step-over-trampoline.exp	2006-12-17 16:52:51.000000000 -0500
f9426a
@@ -0,0 +1,54 @@
f9426a
+# Copyright 2006 Free Software Foundation, Inc.
f9426a
+
f9426a
+# This program is free software; you can redistribute it and/or modify
f9426a
+# it under the terms of the GNU General Public License as published by
f9426a
+# the Free Software Foundation; either version 2 of the License, or
f9426a
+# (at your option) any later version.
f9426a
+# 
f9426a
+# This program is distributed in the hope that it will be useful,
f9426a
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
f9426a
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f9426a
+# GNU General Public License for more details.
f9426a
+# 
f9426a
+# You should have received a copy of the GNU General Public License
f9426a
+# along with this program; if not, write to the Free Software
f9426a
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
f9426a
+
f9426a
+if $tracelevel then {
f9426a
+    strace $tracelevel
f9426a
+}
f9426a
+
f9426a
+set testfile step-over-trampoline
f9426a
+set srcfile ${testfile}.c
f9426a
+set binfile ${objdir}/${subdir}/${testfile}
f9426a
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
f9426a
+    untested "Couldn't compile test program"
f9426a
+    return -1
f9426a
+}
f9426a
+
f9426a
+# Get things started.
f9426a
+
f9426a
+gdb_exit
f9426a
+gdb_start
f9426a
+gdb_reinitialize_dir $srcdir/$subdir
f9426a
+gdb_load ${binfile}
f9426a
+
f9426a
+# For C programs, "start" should stop in main().
f9426a
+
f9426a
+gdb_test "start" \
f9426a
+         "main \\(\\) at .*$srcfile.*" \
f9426a
+         "start"
f9426a
+
f9426a
+# main () at hello2.c:5
f9426a
+# 5		puts("hello world\n");
f9426a
+# (gdb) next
f9426a
+# 0x100007e0 in call___do_global_ctors_aux ()
f9426a
+
f9426a
+gdb_test_multiple "next" "invalid `next' output" {
f9426a
+	-re "\nhello world.*return 0;.*" {
f9426a
+		pass "stepped over"
f9426a
+	}
f9426a
+	-re " in call___do_global_ctors_aux \\(\\).*" {
f9426a
+		fail "stepped into trampoline"
f9426a
+	}
f9426a
+}
f9426a
--- /dev/null	2006-12-17 14:18:21.881669220 -0500
f9426a
+++ gdb-6.5/gdb/testsuite/gdb.base/step-over-trampoline.c	2006-12-17 16:18:12.000000000 -0500
f9426a
@@ -0,0 +1,28 @@
f9426a
+/* This testcase is part of GDB, the GNU debugger.
f9426a
+
f9426a
+   Copyright 2006 Free Software Foundation, Inc.
f9426a
+
f9426a
+   This program is free software; you can redistribute it and/or modify
f9426a
+   it under the terms of the GNU General Public License as published by
f9426a
+   the Free Software Foundation; either version 2 of the License, or
f9426a
+   (at your option) any later version.
f9426a
+
f9426a
+   This program is distributed in the hope that it will be useful,
f9426a
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
f9426a
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f9426a
+   GNU General Public License for more details.
f9426a
+ 
f9426a
+   You should have received a copy of the GNU General Public License
f9426a
+   along with this program; if not, write to the Free Software
f9426a
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
f9426a
+
f9426a
+   Please email any bugs, comments, and/or additions to this file to:
f9426a
+   bug-gdb@prep.ai.mit.edu  */
f9426a
+
f9426a
+#include <stdio.h>
f9426a
+
f9426a
+int main (void)
f9426a
+{
f9426a
+	puts ("hello world");
f9426a
+	return 0;
f9426a
+}