[gdbserver] Move malloc.h include to server.h.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / arrayidx.exp
CommitLineData
4c38e0a4 1# Copyright 2005, 2007, 2008, 2009, 2010 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
JB
15
16if $tracelevel then {
17 strace $tracelevel
18}
19
20load_lib "ada.exp"
21
ec3c07fc
NS
22if { [skip_ada_tests] } { return -1 }
23
2336bb58
JB
24set testdir "arrayidx"
25set testfile "${testdir}/p"
26set srcfile ${srcdir}/${subdir}/${testfile}.adb
27set binfile ${objdir}/${subdir}/${testfile}
28
29file mkdir ${objdir}/${subdir}/${testdir}
ec3c07fc
NS
30if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
31 return -1
2336bb58
JB
32}
33
34gdb_exit
35gdb_start
36gdb_reinitialize_dir $srcdir/$subdir
37gdb_load ${binfile}
38
39set bp_location [gdb_get_line_number "START" ${testdir}/p.adb]
40runto "p.adb:$bp_location"
41
42# First, print all the arrays without indexes
43
a7b75dfd 44gdb_test_no_output "set print array-indexes off"
2336bb58
JB
45
46gdb_test "print one_two_three" \
b6db24e5 47 "= \\(1, 2, 3\\)" \
2336bb58
JB
48 "print one_two_three, indexes off"
49
2336bb58 50gdb_test "print e_one_two_three" \
b6db24e5 51 "= \\(1, 2, 3\\)" \
2336bb58
JB
52 "print e_one_two_three, indexes off"
53
2336bb58 54gdb_test "print r_two_three" \
b6db24e5 55 "= \\(two => 2, 3\\)" \
2336bb58
JB
56 "print r_two_three, indexes off"
57
58gdb_test "print u_one_two_three" \
b6db24e5 59 "= \\(1, 2, 3\\)" \
2336bb58
JB
60 "print u_one_two_three, indexes off"
61
62gdb_test "print p_one_two_three" \
b6db24e5 63 "= \\(0 => false, true, true\\)" \
2336bb58
JB
64 "print p_one_two_three, indexes off"
65
66gdb_test "print few_reps" \
b6db24e5 67 "= \\(1, 2, 3, 3, 3, 3, 3, 4, 5\\)" \
2336bb58
JB
68 "print few_reps, indexes off"
69
70gdb_test "print many_reps" \
b6db24e5 71 "= \\(1, 2, 3 <repeats 12 times>, 4, 5\\)" \
2336bb58
JB
72 "print many_reps, indexes off"
73
74gdb_test "print empty" \
b6db24e5 75 "= \\(\\)" \
2336bb58
JB
76 "print empty, indexes off"
77
78# Next, print all the arrays with the indexes
79
a7b75dfd 80gdb_test_no_output "set print array-indexes on"
2336bb58
JB
81
82gdb_test "print one_two_three" \
b6db24e5 83 "= \\(1 => 1, 2 => 2, 3 => 3\\)" \
2336bb58
JB
84 "print one_two_three"
85
2336bb58 86gdb_test "print e_one_two_three" \
b6db24e5 87 "= \\(one => 1, two => 2, three => 3\\)" \
2336bb58
JB
88 "print e_one_two_three"
89
2336bb58 90gdb_test "print r_two_three" \
b6db24e5 91 "= \\(two => 2, three => 3\\)" \
2336bb58
JB
92 "print r_two_three"
93
94gdb_test "print u_one_two_three" \
b6db24e5 95 "= \\(1 => 1, 2 => 2, 3 => 3\\)" \
2336bb58
JB
96 "print u_one_two_three"
97
98gdb_test "print p_one_two_three" \
b6db24e5 99 "= \\(0 => false, 1 => true, 2 => true\\)" \
2336bb58
JB
100 "print p_one_two_three"
101
102gdb_test "print few_reps" \
b6db24e5 103 "= \\(1 => 1, 2 => 2, 3 => 3, 4 => 3, 5 => 3, 6 => 3, 7 => 3, 8 => 4, 9 => 5\\)" \
2336bb58
JB
104 "print few_reps"
105
106gdb_test "print many_reps" \
b6db24e5 107 "= \\(1 => 1, 2 => 2, 3 => 3 <repeats 12 times>, 15 => 4, 16 => 5\\)" \
2336bb58
JB
108 "print many_reps"
109
110gdb_test "print empty" \
b6db24e5 111 "= \\(\\)" \
2336bb58
JB
112 "print empty"
113
114
This page took 0.506265 seconds and 4 git commands to generate.