1 # Copyright 2005-2024 Free Software Foundation, Inc.
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.
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.
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/>.
18 require allow_ada_tests
20 standard_ada_testfile p
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
26 set old_gcc [gnat_version_compare <= {4 6}]
28 clean_restart ${testfile}
30 set bp_location [gdb_get_line_number "START" ${testdir}/p.adb]
31 runto "p.adb:$bp_location"
33 # First, print all the arrays without indexes
35 gdb_test_no_output "set print array-indexes off"
40 gdb_test "print one_two_three" \
42 "print one_two_three, indexes off"
44 gdb_test "print e_one_two_three" \
46 "print e_one_two_three, indexes off"
48 gdb_test "print r_two_three" \
49 "= \\(two => 2, 3\\)" \
50 "print r_two_three, indexes off"
52 gdb_test "print u_one_two_three" \
54 "print u_one_two_three, indexes off"
56 gdb_test "print p_one_two_three" \
57 "= \\(false, true, true\\)" \
58 "print p_one_two_three, indexes off"
63 gdb_test "print few_reps" \
64 "= \\(1, 2, 3, 3, 3, 3, 3, 4, 5\\)" \
65 "print few_reps, indexes off"
70 gdb_test "print many_reps" \
71 "= \\(1, 2, 3 <repeats 12 times>, 4, 5\\)" \
72 "print many_reps, indexes off"
77 gdb_test "print empty" \
79 "print empty, indexes off"
81 # Next, print all the arrays with the indexes
83 gdb_test_no_output "set print array-indexes on"
88 gdb_test "print one_two_three" \
89 "= \\(1 => 1, 2 => 2, 3 => 3\\)"
91 gdb_test "print e_one_two_three" \
92 "= \\(one => 1, two => 2, three => 3\\)"
94 gdb_test "print r_two_three" \
95 "= \\(two => 2, three => 3\\)"
97 gdb_test "print u_one_two_three" \
98 "= \\(1 => 1, 2 => 2, 3 => 3\\)"
100 gdb_test "print p_one_two_three" \
101 "= \\(one => false, two => true, three => true\\)"
106 gdb_test "print few_reps" \
107 "= \\(1 => 1, 2 => 2, 3 => 3, 4 => 3, 5 => 3, 6 => 3, 7 => 3, 8 => 4, 9 => 5\\)"
112 gdb_test "print many_reps" \
113 "= \\(1 => 1, 2 => 2, 3 => 3 <repeats 12 times>, 15 => 4, 16 => 5\\)"
118 gdb_test "print empty" \