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