77 lines
2.2 KiB
Diff
77 lines
2.2 KiB
Diff
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.
|
|
|
|
--- /dev/null Thu Apr 11 10:25:15 2002
|
|
+++ gdb+dejagnu-20040223/gdb/testsuite/gdb.arch/ia64-libunwind.exp Mon Nov 17 15:57:04 2003
|
|
@@ -0,0 +1,55 @@
|
|
+# Copyright 2003 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 $tracelevel then {
|
|
+ strace $tracelevel
|
|
+}
|
|
+
|
|
+#
|
|
+# test running programs
|
|
+#
|
|
+set prms_id 0
|
|
+set bug_id 0
|
|
+
|
|
+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}
|
|
+send_gdb "set debug arch 1\n"
|
|
+send_gdb "break main\n"
|
|
+gdb_test "run" ".*acquire_unwind_info.*"
|
|
+
|
|
--- /dev/null Thu Apr 11 10:25:15 2002
|
|
+++ gdb+dejagnu-20040223/gdb/testsuite/gdb.arch/ia64-libunwind.c Mon Nov 17 15:58:27 2003
|
|
@@ -0,0 +1,9 @@
|
|
+#include <stdio.h>
|
|
+
|
|
+int main()
|
|
+{
|
|
+ printf ("hello world\n");
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|