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.
103 lines
3.3 KiB
103 lines
3.3 KiB
2003-11-17 Elena Zannoni <ezannoni@redhat.com> |
|
|
|
From Jeff Johnston <jjohnstn@redhat.com> |
|
* gdb.arch/ia64-libunwind.exp: New file. |
|
* gdb.arch/ia64-libunwind.c: New file. |
|
|
|
2004-08-03 Jeff Johnston <jjohnstn@redhat.com> |
|
|
|
* gdb.arch/ia64-libunwind.exp: Fix test string to match |
|
current code base. |
|
|
|
[ acquire_unwind_info -> ia64_find_proc_info_x ] |
|
|
|
2009-04-30 Jan Kratochvil <jan.kratochvil@redhat.com> |
|
|
|
Remove a race from send_gdb "COMMAND\n". |
|
Cleanup. |
|
Merge in: Patch4: gdb-6.3-rh-testlibunwind1fix-20041202.patch |
|
|
|
--- /dev/null 2009-04-19 08:52:54.499000000 +0200 |
|
+++ gdb-6.8/gdb/testsuite/gdb.arch/ia64-libunwind.c 2009-04-30 19:15:16.000000000 +0200 |
|
@@ -0,0 +1,26 @@ |
|
+/* Copyright 2003, 2009 Free Software Foundation, Inc. |
|
+ |
|
+ This file is part of GDB. |
|
+ |
|
+ 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/>. */ |
|
+ |
|
+#include <stdio.h> |
|
+ |
|
+int |
|
+main () |
|
+{ |
|
+ printf ("hello world\n"); |
|
+ |
|
+ return 0; |
|
+} |
|
--- /dev/null 2009-04-19 08:52:54.499000000 +0200 |
|
+++ gdb-6.8/gdb/testsuite/gdb.arch/ia64-libunwind.exp 2009-04-30 19:19:22.000000000 +0200 |
|
@@ -0,0 +1,52 @@ |
|
+# Copyright 2003, 2009 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 2 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, write to the Free Software |
|
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
+ |
|
+# Please email any bugs, comments, and/or additions to this file to: |
|
+# bug-gdb@prep.ai.mit.edu |
|
+ |
|
+# This file was written by Jeff Johnston (jjohnstn@redhat.com) |
|
+ |
|
+if ![istarget "ia64-*-*"] then { |
|
+ return |
|
+} |
|
+ |
|
+set testfile "ia64-libunwind" |
|
+set srcfile ${testfile}.c |
|
+set binfile ${objdir}/${subdir}/${testfile} |
|
+ |
|
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-w}] != "" } { |
|
+ gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." |
|
+} |
|
+ |
|
+if [get_compiler_info ${binfile}] { |
|
+ return -1 |
|
+} |
|
+ |
|
+gdb_exit |
|
+gdb_start |
|
+gdb_reinitialize_dir $srcdir/$subdir |
|
+gdb_load ${binfile} |
|
+ |
|
+gdb_test "set debug arch 1" |
|
+gdb_breakpoint "main" |
|
+gdb_run_cmd |
|
+ |
|
+set test "libunwind message" |
|
+gdb_test_multiple "" $test { |
|
+ -re "ia64_find_proc_info_x.*$gdb_prompt $" { |
|
+ pass $test |
|
+ } |
|
+}
|
|
|