1 # Copyright 2005, 2007-2012 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 if { [skip_ada_tests] } { return -1 }
20 set testdir "arrayidx"
21 set testfile "${testdir}/p"
22 set srcfile ${srcdir}/${subdir}/${testfile}.adb
23 set binfile ${objdir}/${subdir}/${testfile}
25 file mkdir ${objdir}/${subdir}/${testdir}
26 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
30 clean_restart ${testfile}
32 set bp_location [gdb_get_line_number "START" ${testdir}/p.adb]
33 runto "p.adb:$bp_location"
35 # First, print all the arrays without indexes
37 gdb_test_no_output "set print array-indexes off"
39 gdb_test "print one_two_three" \
41 "print one_two_three, indexes off"
43 gdb_test "print e_one_two_three" \
45 "print e_one_two_three, indexes off"
47 gdb_test "print r_two_three" \
48 "= \\(two => 2, 3\\)" \
49 "print r_two_three, indexes off"
51 gdb_test "print u_one_two_three" \
53 "print u_one_two_three, indexes off"
55 gdb_test "print p_one_two_three" \
56 "= \\(0 => false, true, true\\)" \
57 "print p_one_two_three, indexes off"
59 gdb_test "print few_reps" \
60 "= \\(1, 2, 3, 3, 3, 3, 3, 4, 5\\)" \
61 "print few_reps, indexes off"
63 gdb_test "print many_reps" \
64 "= \\(1, 2, 3 <repeats 12 times>, 4, 5\\)" \
65 "print many_reps, indexes off"
67 gdb_test "print empty" \
69 "print empty, indexes off"
71 # Next, print all the arrays with the indexes
73 gdb_test_no_output "set print array-indexes on"
75 gdb_test "print one_two_three" \
76 "= \\(1 => 1, 2 => 2, 3 => 3\\)" \
79 gdb_test "print e_one_two_three" \
80 "= \\(one => 1, two => 2, three => 3\\)" \
81 "print e_one_two_three"
83 gdb_test "print r_two_three" \
84 "= \\(two => 2, three => 3\\)" \
87 gdb_test "print u_one_two_three" \
88 "= \\(1 => 1, 2 => 2, 3 => 3\\)" \
89 "print u_one_two_three"
91 gdb_test "print p_one_two_three" \
92 "= \\(0 => false, 1 => true, 2 => true\\)" \
93 "print p_one_two_three"
95 gdb_test "print few_reps" \
96 "= \\(1 => 1, 2 => 2, 3 => 3, 4 => 3, 5 => 3, 6 => 3, 7 => 3, 8 => 4, 9 => 5\\)" \
99 gdb_test "print many_reps" \
100 "= \\(1 => 1, 2 => 2, 3 => 3 <repeats 12 times>, 15 => 4, 16 => 5\\)" \
103 gdb_test "print empty" \