ld/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / arrayidx.exp
CommitLineData
0b302171 1# Copyright 2005, 2007-2012 Free Software Foundation, Inc.
2336bb58
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
2336bb58
JB
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
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
2336bb58 15
2336bb58
JB
16load_lib "ada.exp"
17
ec3c07fc
NS
18if { [skip_ada_tests] } { return -1 }
19
2336bb58
JB
20set testdir "arrayidx"
21set testfile "${testdir}/p"
22set srcfile ${srcdir}/${subdir}/${testfile}.adb
23set binfile ${objdir}/${subdir}/${testfile}
24
25file mkdir ${objdir}/${subdir}/${testdir}
ec3c07fc
NS
26if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
27 return -1
2336bb58
JB
28}
29
3f20c47f
JK
30if [get_compiler_info ${binfile}] {
31 return -1;
32}
33set old_gcc [expr [test_compiler_info {gcc-[0-3]-*}] \
34 || [test_compiler_info {gcc-4-[0-6]-*}]]
35
09050809 36clean_restart ${testfile}
2336bb58
JB
37
38set bp_location [gdb_get_line_number "START" ${testdir}/p.adb]
39runto "p.adb:$bp_location"
40
41# First, print all the arrays without indexes
42
a7b75dfd 43gdb_test_no_output "set print array-indexes off"
2336bb58 44
3f20c47f
JK
45if $old_gcc {
46 setup_xfail "*-*-*"
47}
2336bb58 48gdb_test "print one_two_three" \
b6db24e5 49 "= \\(1, 2, 3\\)" \
2336bb58
JB
50 "print one_two_three, indexes off"
51
2336bb58 52gdb_test "print e_one_two_three" \
b6db24e5 53 "= \\(1, 2, 3\\)" \
2336bb58
JB
54 "print e_one_two_three, indexes off"
55
2336bb58 56gdb_test "print r_two_three" \
b6db24e5 57 "= \\(two => 2, 3\\)" \
2336bb58
JB
58 "print r_two_three, indexes off"
59
60gdb_test "print u_one_two_three" \
b6db24e5 61 "= \\(1, 2, 3\\)" \
2336bb58
JB
62 "print u_one_two_three, indexes off"
63
64gdb_test "print p_one_two_three" \
99b1c762 65 "= \\(false, true, true\\)" \
2336bb58
JB
66 "print p_one_two_three, indexes off"
67
3f20c47f
JK
68if $old_gcc {
69 setup_xfail "*-*-*"
70}
2336bb58 71gdb_test "print few_reps" \
b6db24e5 72 "= \\(1, 2, 3, 3, 3, 3, 3, 4, 5\\)" \
2336bb58
JB
73 "print few_reps, indexes off"
74
3f20c47f
JK
75if $old_gcc {
76 setup_xfail "*-*-*"
77}
2336bb58 78gdb_test "print many_reps" \
b6db24e5 79 "= \\(1, 2, 3 <repeats 12 times>, 4, 5\\)" \
2336bb58
JB
80 "print many_reps, indexes off"
81
3f20c47f
JK
82if $old_gcc {
83 setup_xfail "*-*-*"
84}
2336bb58 85gdb_test "print empty" \
b6db24e5 86 "= \\(\\)" \
2336bb58
JB
87 "print empty, indexes off"
88
89# Next, print all the arrays with the indexes
90
a7b75dfd 91gdb_test_no_output "set print array-indexes on"
2336bb58 92
3f20c47f
JK
93if $old_gcc {
94 setup_xfail "*-*-*"
95}
2336bb58 96gdb_test "print one_two_three" \
b6db24e5 97 "= \\(1 => 1, 2 => 2, 3 => 3\\)" \
2336bb58
JB
98 "print one_two_three"
99
2336bb58 100gdb_test "print e_one_two_three" \
b6db24e5 101 "= \\(one => 1, two => 2, three => 3\\)" \
2336bb58
JB
102 "print e_one_two_three"
103
2336bb58 104gdb_test "print r_two_three" \
b6db24e5 105 "= \\(two => 2, three => 3\\)" \
2336bb58
JB
106 "print r_two_three"
107
108gdb_test "print u_one_two_three" \
b6db24e5 109 "= \\(1 => 1, 2 => 2, 3 => 3\\)" \
2336bb58
JB
110 "print u_one_two_three"
111
112gdb_test "print p_one_two_three" \
99b1c762 113 "= \\(one => false, two => true, three => true\\)" \
2336bb58
JB
114 "print p_one_two_three"
115
3f20c47f
JK
116if $old_gcc {
117 setup_xfail "*-*-*"
118}
2336bb58 119gdb_test "print few_reps" \
b6db24e5 120 "= \\(1 => 1, 2 => 2, 3 => 3, 4 => 3, 5 => 3, 6 => 3, 7 => 3, 8 => 4, 9 => 5\\)" \
2336bb58
JB
121 "print few_reps"
122
3f20c47f
JK
123if $old_gcc {
124 setup_xfail "*-*-*"
125}
2336bb58 126gdb_test "print many_reps" \
b6db24e5 127 "= \\(1 => 1, 2 => 2, 3 => 3 <repeats 12 times>, 15 => 4, 16 => 5\\)" \
2336bb58
JB
128 "print many_reps"
129
3f20c47f
JK
130if $old_gcc {
131 setup_xfail "*-*-*"
132}
2336bb58 133gdb_test "print empty" \
b6db24e5 134 "= \\(\\)" \
2336bb58
JB
135 "print empty"
136
137
This page took 0.756789 seconds and 4 git commands to generate.