[gdb/testsuite] Capture many-headers.exp progress and output in gdb.log
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / endianity.exp
CommitLineData
b811d2c2 1# Copyright 2019-2020 Free Software Foundation, Inc.
34877895
PJ
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 3 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, see <http://www.gnu.org/licenses/>.
15
16standard_testfile .c
17
18if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
19 return -1
20}
21
22set bp_location [gdb_get_line_number "START"]
23if ![runto "endianity.c:$bp_location" ] then {
24 fail "couldn't run to start"
25 return -1
26}
27
4139ff00 28gdb_test "print o" "= {v = 3, w = 2, x = 7, f = 23.5, cplx = 1.25 \\+ 7.25 \\* I, d = 75}" \
103a685e 29 "print o before assignment"
34877895
PJ
30
31gdb_test "print o.v = 4" "= 4"
32gdb_test "print o.w = 3" "= 3"
4139ff00 33gdb_test "print o.x = 2" "= 2"
103a685e
TT
34gdb_test "print o.f = 1.5" "= 1.5"
35gdb_test "print o.d = -23.125" "= -23.125"
34877895
PJ
36
37# scalar_storage_order requires gcc >= 6
38if { ([test_compiler_info {gcc-[0-5]-*}] || ![test_compiler_info gcc*]) } {
39 setup_xfail "*-*-*"
40}
41gdb_test "x/x &o.v" "0x04000000"
42gdb_test "x/xh &o.w" "0x0300"
43
4139ff00 44gdb_test "print o" "= {v = 4, w = 3, x = 2, f = 1.5, cplx = 1.25 \\+ 7.25 \\* I, d = -23.125}" \
103a685e 45 "print o after assignment"
This page took 0.059516 seconds and 4 git commands to generate.