]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.arch/i386-prologue.exp
2004-04-29 Andrew Cagney <cagney@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / i386-prologue.exp
CommitLineData
55ed7501
MK
1# Copyright 2003 Free Software Foundation, Inc.
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@gnu.org
19
20# This file is part of the gdb testsuite.
21
22if $tracelevel {
23 strace $tracelevel
24}
25
26# Test i386 prologue analyzer.
27
28set prms_id 0
29set bug_id 0
30
31if ![istarget "i?86-*-*"] then {
32 verbose "Skipping i386 prologue tests."
33 return
34}
35
36set testfile "i386-prologue"
37set srcfile ${testfile}.c
38set binfile ${objdir}/${subdir}/${testfile}
39if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
40 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
41}
42
43gdb_exit
44gdb_start
45gdb_reinitialize_dir $srcdir/$subdir
46gdb_load ${binfile}
47
48#
49# Run to `main' where we begin our tests.
50#
51
52if ![runto_main] then {
53 gdb_suppress_tests
54}
55
c945b932 56# Testcase from symtab/1253.
55ed7501
MK
57
58gdb_test "continue" "Program received signal SIGTRAP.*" "continue to gdb1253"
59
60gdb_test "backtrace 10" \
61 "#0\[ \t\]*$hex in gdb1253.*\r\n#1\[ \t\]*$hex in main.*" \
62 "backtrace in gdb1253"
c945b932 63
161afb24
MK
64gdb_test "info frame" \
65 ".*Saved registers:.*ebp at.*edi at.*eip at.*" \
66 "saved registers in gdb1253"
67
c945b932
MK
68# Testcase from backtrace/1338.
69
70gdb_test "continue" "Program received signal SIGTRAP.*" "continue to gdb1338"
71
72gdb_test "backtrace 10" \
73 "#0\[ \t\]*$hex in gdb1338.*\r\n#1\[ \t\]*$hex in main.*" \
74 "backtrace in gdb1338"
161afb24
MK
75
76gdb_test "info frame" \
77 ".*Saved registers:.*ebx at.*esi at.*edi at.*eip at.*" \
78 "saved registers in gdb1338"