]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/structs2.exp
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / structs2.exp
CommitLineData
6aba47ca 1# Copyright 1998, 1999, 2007 Free Software Foundation, Inc.
c906108c
SS
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
20if $tracelevel then {
21 strace $tracelevel
22}
23
24set prms_id 0
25set bug_id 0
26
27set prototypes 1
28set testfile "structs2"
29set srcfile ${testfile}.c
30set binfile ${objdir}/${subdir}/${testfile}
31
e12a46c9
RC
32# Create and source the file that provides information about the compiler
33# used to compile the test case.
34if [get_compiler_info ${binfile}] {
35 return -1;
36}
37
c906108c
SS
38# build the first test case
39if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
40 # built the second test case since we can't use prototypes
41 warning "Prototypes not supported, rebuilding with -DNO_PROTOTYPES"
42 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DNO_PROTOTYPES}] != "" } {
b60f0898
JB
43 untested structs2.exp
44 return -1
c906108c
SS
45 }
46 set prototypes 0
47}
48
49# Start with a fresh gdb.
50
51gdb_start
52gdb_reinitialize_dir $srcdir/$subdir
53gdb_load ${binfile}
54
a0b3c4fd 55gdb_test "set width 0" ""
c906108c
SS
56
57if { ![runto_main] } then {
58 gdb_suppress_tests
59}
60
61# Ok, we're finally ready to actually do our tests.
62
63set prms_id 13536
64set bug_id 0
65
66gdb_test "f" \
67 ".*bkpt = 0.*" \
68 "structs2 sanity check"
69
70gdb_test "break param_reg" \
71 "Breakpoint .* at .*" \
72 "structs2 breakpoint set"
73
36ae0ea9 74if [test_compiler_info gcc-3-*] {
e12a46c9
RC
75 setup_xfail hppa*-* gcc/15860
76}
c906108c
SS
77gdb_test "continue" \
78 ".*pr_char=120.*pr_uchar=130.*pr_short=32000.*pr_ushort=33000.*bkpt = 1.*" \
79 "structs2 continue1"
80
36ae0ea9 81if [test_compiler_info gcc-3-*] {
e12a46c9
RC
82 setup_xfail hppa*-* gcc/15860
83}
c906108c
SS
84gdb_test "continue" \
85 ".*pr_char=-126.*pr_uchar=120.*pr_short=-32536.*pr_ushort=32000.*bkpt = 1.*" \
86 "structs2 continue2"
87
88# End of tests.
89
90gdb_stop_suppressing_tests
91
92return 0