Fix crash when exiting TUI with gdb -tui
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / endianity.exp
1 # Copyright 2019-2020 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 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
16 standard_testfile .c
17
18 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
19 return -1
20 }
21
22 set bp_location [gdb_get_line_number "START"]
23 if ![runto "endianity.c:$bp_location" ] then {
24 fail "couldn't run to start"
25 return -1
26 }
27
28 gdb_test "print o" "= {v = 3, w = 2, x = 7, f = 23.5, cplx = 1.25 \\+ 7.25i, d = 75}" \
29 "print o before assignment"
30
31 gdb_test "print o.v = 4" "= 4"
32 gdb_test "print o.w = 3" "= 3"
33 gdb_test "print o.x = 2" "= 2"
34 gdb_test "print o.f = 1.5" "= 1.5"
35 gdb_test "print o.d = -23.125" "= -23.125"
36
37 # scalar_storage_order requires gcc >= 6
38 if { ([test_compiler_info {gcc-[0-5]-*}] || ![test_compiler_info gcc*]) } {
39 setup_xfail "*-*-*"
40 }
41 gdb_test "x/x &o.v" "0x04000000"
42 gdb_test "x/xh &o.w" "0x0300"
43
44 gdb_test "print o" "= {v = 4, w = 3, x = 2, f = 1.5, cplx = 1.25 \\+ 7.25i, d = -23.125}" \
45 "print o after assignment"
This page took 0.02995 seconds and 4 git commands to generate.