]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.fortran/multi-dim.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.fortran / multi-dim.exp
1 # Copyright 2011-2013 Free Software Foundation, Inc.
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
16 # This file is part of the gdb testsuite. It contains tests for evaluating
17 # Fortran subarray expression.
18
19 if { [skip_fortran_tests] } { return -1 }
20
21 standard_testfile .f90
22
23 if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug f90}] } {
24 return -1
25 }
26
27 if ![runto MAIN__] {
28 perror "Couldn't run to MAIN__"
29 continue
30 }
31
32 # Depending on the compiler version being used, the name of the 4-byte integer
33 # and real types can be printed differently. For instance, gfortran-4.1 uses
34 # "int4" whereas gfortran-4.3 uses "int(kind=4)".
35 set int4 "(int4|integer\\(kind=4\\))"
36
37 gdb_breakpoint [gdb_get_line_number "break-static"]
38 gdb_continue_to_breakpoint "break-static" ".*break-static.*"
39
40 gdb_test "print foo(2,3,4)" \
41 " = 20" \
42 "print valid static array element"
43
44 gdb_test "print foo(0,0,0)" \
45 "no such vector element" \
46 "print an invalid array index (0,0,0)"
47
48 gdb_test "print foo(2,3,5)" \
49 "no such vector element" \
50 "print an invalid array index (2,3,5)"
51
52 gdb_test "print foo(2,4,4)" \
53 "no such vector element" \
54 "print an invalid array index (2,4,4)"
55
56 gdb_test "print foo(3,3,4)" \
57 "no such vector element" \
58 "print an invalid array index (3,3,4)"
59
60 gdb_test "print foo" \
61 { = \(\( \( 10, 10\) \( 10, 10\) \( 10, 10\) \) \( \( 10, 10\) \( 10, 10\) \( 10, 10\) \) \( \( 10, 10\) \( 10, 10\) \( 10, 10\) \) \( \( 10, 10\) \( 10, 10\) \( 10, 20\) \) \)} \
62 "print full contents of the array"
63
64 gdb_breakpoint [gdb_get_line_number "break-variable"]
65 gdb_continue_to_breakpoint "break-variable" ".*break-variable.*"
66
67 gdb_test "print varbound(4)" \
68 " = 2" \
69 "print valid variable bound array element"
70
71 gdb_test "ptype unbound" \
72 "type = $int4 \\(\\*\\)" \
73 "print type of unbound array"
74
75 gdb_test "print unbound(4)" \
76 " = 2" \
77 "print valid unbound array element"