Updated copyright notices for most files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / structs2.exp
CommitLineData
9b254dd1 1# Copyright 1998, 1999, 2007, 2008 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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
15
16# Please email any bugs, comments, and/or additions to this file to:
17# bug-gdb@prep.ai.mit.edu
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
23set prms_id 0
24set bug_id 0
25
26set prototypes 1
27set testfile "structs2"
28set srcfile ${testfile}.c
29set binfile ${objdir}/${subdir}/${testfile}
30
e12a46c9
RC
31# Create and source the file that provides information about the compiler
32# used to compile the test case.
33if [get_compiler_info ${binfile}] {
34 return -1;
35}
36
c906108c
SS
37# build the first test case
38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
39 # built the second test case since we can't use prototypes
40 warning "Prototypes not supported, rebuilding with -DNO_PROTOTYPES"
41 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DNO_PROTOTYPES}] != "" } {
b60f0898
JB
42 untested structs2.exp
43 return -1
c906108c
SS
44 }
45 set prototypes 0
46}
47
48# Start with a fresh gdb.
49
50gdb_start
51gdb_reinitialize_dir $srcdir/$subdir
52gdb_load ${binfile}
53
a0b3c4fd 54gdb_test "set width 0" ""
c906108c
SS
55
56if { ![runto_main] } then {
57 gdb_suppress_tests
58}
59
60# Ok, we're finally ready to actually do our tests.
61
62set prms_id 13536
63set bug_id 0
64
65gdb_test "f" \
66 ".*bkpt = 0.*" \
67 "structs2 sanity check"
68
69gdb_test "break param_reg" \
70 "Breakpoint .* at .*" \
71 "structs2 breakpoint set"
72
36ae0ea9 73if [test_compiler_info gcc-3-*] {
e12a46c9
RC
74 setup_xfail hppa*-* gcc/15860
75}
c906108c
SS
76gdb_test "continue" \
77 ".*pr_char=120.*pr_uchar=130.*pr_short=32000.*pr_ushort=33000.*bkpt = 1.*" \
78 "structs2 continue1"
79
36ae0ea9 80if [test_compiler_info gcc-3-*] {
e12a46c9
RC
81 setup_xfail hppa*-* gcc/15860
82}
c906108c
SS
83gdb_test "continue" \
84 ".*pr_char=-126.*pr_uchar=120.*pr_short=-32536.*pr_ushort=32000.*bkpt = 1.*" \
85 "structs2 continue2"
86
87# End of tests.
88
89gdb_stop_suppressing_tests
90
91return 0
This page took 0.74553 seconds and 4 git commands to generate.