]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/var_rec_arr.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / var_rec_arr.exp
CommitLineData
213516ef 1# Copyright 2015-2023 Free Software Foundation, Inc.
87b8eff0
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
7a82e903
PA
18if { [skip_ada_tests] } { return -1 }
19
87b8eff0
JB
20standard_ada_testfile foo_na09_042
21
dac2fef7
TT
22# Note we don't test the "none" (no -fgnat-encodings option) scenario
23# here, because "all" and "minimal" cover the cases, and this way we
24# don't have to update the test when gnat changes its default.
25foreach_with_prefix scenario {all minimal} {
26 set flags [list debug additional_flags=-fgnat-encodings=$scenario]
27
5ae3df22 28 if {[gdb_compile_ada "${srcfile}" "${binfile}-${scenario}" executable $flags] != ""} {
dac2fef7
TT
29 return -1
30 }
87b8eff0 31
5ae3df22 32 clean_restart ${testfile}-${scenario}
87b8eff0 33
dac2fef7
TT
34 set bp_location [gdb_get_line_number "STOP" ${testdir}/foo_na09_042.adb]
35 runto "foo_na09_042.adb:$bp_location"
87b8eff0 36
dac2fef7
TT
37 gdb_test "print a1" \
38 " = \\(\\(i => 0, s => \"\"\\), \\(i => 1, s => \"A\"\\), \\(i => 2, s => \"AB\"\\)\\)"
87b8eff0 39
dac2fef7
TT
40 gdb_test "print a1(1)" \
41 " = \\(i => 0, s => \"\"\\)"
87b8eff0 42
dac2fef7
TT
43 gdb_test "print a1(2)" \
44 " = \\(i => 1, s => \"A\"\\)"
87b8eff0 45
dac2fef7
TT
46 gdb_test "print a1(3)" \
47 " = \\(i => 2, s => \"AB\"\\)"
87b8eff0 48
dac2fef7
TT
49 gdb_test "print a2" \
50 " = \\(\\(i => 2, s => \"AB\"\\), \\(i => 1, s => \"A\"\\), \\(i => 0, s => \"\"\\)\\)"
87b8eff0 51
dac2fef7
TT
52 gdb_test "print a2(1)" \
53 " = \\(i => 2, s => \"AB\"\\)"
87b8eff0 54
dac2fef7
TT
55 gdb_test "print a2(2)" \
56 " = \\(i => 1, s => \"A\"\\)"
87b8eff0 57
dac2fef7
TT
58 gdb_test "print a2(3)" \
59 " = \\(i => 0, s => \"\"\\)"
155bfbd3 60
9c91c725
TT
61 gdb_test "ptype a1(1)" \
62 [multi_line "type = record" \
63 " i: pck\\.small_type;" \
64 " s: array \\((<>|1 \\.\\. i)\\) of character;" \
65 "end record"]
dac2fef7 66}