OSDN Git Service

2000-10-16 Michael Snyder <msnyder@cleaver.cygnus.com>
[pf3gnuchains/pf3gnuchains3x.git] / gdb / testsuite / gdb.base / structs2.exp
1 # Copyright (C) 1998 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@prep.ai.mit.edu
19
20 if $tracelevel then {
21         strace $tracelevel
22 }
23
24 set prms_id 0
25 set bug_id 0
26
27 set prototypes 1
28 set testfile "structs2"
29 set srcfile ${testfile}.c
30 set binfile ${objdir}/${subdir}/${testfile}
31
32 # build the first test case
33 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
34     # built the second test case since we can't use prototypes
35     warning "Prototypes not supported, rebuilding with -DNO_PROTOTYPES"
36     if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DNO_PROTOTYPES}] != "" } {
37         gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
38     }
39     set prototypes 0
40 }
41
42 # Start with a fresh gdb.
43
44 gdb_start
45 gdb_reinitialize_dir $srcdir/$subdir
46 gdb_load ${binfile}
47
48 gdb_test "set width 0" "" ""
49
50 if { ![runto_main] } then {
51     gdb_suppress_tests
52 }
53
54 # Ok, we're finally ready to actually do our tests.
55
56 set prms_id 13536
57 set bug_id 0
58
59 gdb_test "f" \
60     ".*bkpt = 0.*" \
61     "structs2 sanity check"
62
63 gdb_test "break param_reg" \
64     "Breakpoint .* at .*" \
65     "structs2 breakpoint set"
66
67 gdb_test "continue" \
68     ".*pr_char=120.*pr_uchar=130.*pr_short=32000.*pr_ushort=33000.*bkpt = 1.*" \
69     "structs2 continue1"
70
71 gdb_test "continue" \
72     ".*pr_char=-126.*pr_uchar=120.*pr_short=-32536.*pr_ushort=32000.*bkpt = 1.*" \
73     "structs2 continue2"
74
75 # End of tests.
76
77 gdb_stop_suppressing_tests
78
79 return 0