]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/enum_idx_packed.exp
Fix decoding of multi-dimensional constrained packed arrays
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / enum_idx_packed.exp
CommitLineData
b811d2c2 1# Copyright 2012-2020 Free Software Foundation, Inc.
99b1c762
JB
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
16load_lib "ada.exp"
17
18if { [skip_ada_tests] } { return -1 }
19
8223e12c 20standard_ada_testfile foo
99b1c762 21
99b1c762
JB
22if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
23 return -1
24}
25
26clean_restart ${testfile}
27
28set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.adb]
29runto "foo.adb:$bp_location"
30
a7400e44
TT
31gdb_test "ptype full" \
32 "type = array \\(black \\.\\. white\\) of boolean <packed: 1-bit elements>"
33
99b1c762
JB
34gdb_test "print full" " = \\(false, true, false, true, false\\)"
35
36gdb_test "print full'first" " = black"
37
a7400e44
TT
38gdb_test "ptype primary" \
39 "type = array \\(red \\.\\. blue\\) of boolean <packed: 1-bit elements>"
40
41gdb_test "print primary" " = \\(red => false, true, false\\)"
42
43gdb_test "print primary'first" " = red"
44
45gdb_test "ptype cold" \
46 "type = array \\(green \\.\\. blue\\) of boolean <packed: 1-bit elements>"
47
48gdb_test "print cold" " = \\(green => false, true\\)"
49
50gdb_test "print cold'first" " = green"
51
52# Note the bounds values are still not correctly displayed. So we get
53# the enum equivalent of "1 .. 0" (empty range) as the array ranges.
54# Accept that for now.
55gdb_test "ptype small" \
56 "array \\(red \\.\\. green\\) of boolean <packed: 1-bit elements>"
57
58gdb_test "print small" " = \\(red => false, true\\)"
59
60gdb_test "print small'first" " = red"
61
62gdb_test "ptype multi" \
63 "array \\(red \\.\\. green, low .. medium\\) of boolean <packed: 1-bit elements>"
64
65gdb_test "print multi" \
66 " = \\(red => \\(low => true, false\\), \\(low => true, false\\)\\)"
67
68gdb_test "print multi'first" " = red"
69
70set base "\\(true, false, true, false, true, false, true, false, true, false\\)"
71set matrix "\\("
72foreach x {1 2 3 4 5 6 7} {
73 if {$x > 1} {
74 append matrix ", "
75 }
76 append matrix $base
77}
78append matrix "\\)"
79
80gdb_test "print multi_multi" " = \\($matrix, $matrix\\)"
81gdb_test "print multi_multi(1,3)" " = $base"
82gdb_test "print multi_multi(2)" " = $matrix"