Synthesize array descriptors with -fgnat-encodings=minimal
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / enum_idx_packed.exp
1 # Copyright 2012-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 load_lib "ada.exp"
17
18 if { [skip_ada_tests] } { return -1 }
19
20 standard_ada_testfile foo
21
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
23 return -1
24 }
25
26 clean_restart ${testfile}
27
28 set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.adb]
29 runto "foo.adb:$bp_location"
30
31 gdb_test "ptype full" \
32 "type = array \\(black \\.\\. white\\) of boolean <packed: 1-bit elements>"
33
34 gdb_test "print full" " = \\(false, true, false, true, false\\)"
35
36 gdb_test "print full'first" " = black"
37
38 gdb_test "ptype primary" \
39 "type = array \\(red \\.\\. blue\\) of boolean <packed: 1-bit elements>"
40
41 gdb_test "print primary" " = \\(red => false, true, false\\)"
42
43 gdb_test "print primary'first" " = red"
44
45 gdb_test "ptype cold" \
46 "type = array \\(green \\.\\. blue\\) of boolean <packed: 1-bit elements>"
47
48 gdb_test "print cold" " = \\(green => false, true\\)"
49
50 gdb_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.
55 gdb_test "ptype small" \
56 "array \\(red \\.\\. green\\) of boolean <packed: 1-bit elements>"
57
58 gdb_test "print small" " = \\(red => false, true\\)"
59
60 gdb_test "print small'first" " = red"
61
62 gdb_test "ptype multi" \
63 "array \\(red \\.\\. green, low .. medium\\) of boolean <packed: 1-bit elements>"
64
65 gdb_test "print multi" \
66 " = \\(red => \\(low => true, false\\), \\(low => true, false\\)\\)"
67
68 gdb_test "print multi'first" " = red"
69
70 set base "\\(true, false, true, false, true, false, true, false, true, false\\)"
71 set matrix "\\("
72 foreach x {1 2 3 4 5 6 7} {
73 if {$x > 1} {
74 append matrix ", "
75 }
76 append matrix $base
77 }
78 append matrix "\\)"
79
80 gdb_test "print multi_multi" " = \\($matrix, $matrix\\)"
81 gdb_test "print multi_multi(1,3)" " = $base"
82 gdb_test "print multi_multi(2)" " = $matrix"
This page took 0.031282 seconds and 4 git commands to generate.