1# Copyright 2015-2020 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
16standard_testfile "vla.f90"
17load_lib fortran.exp
18
19if {[skip_fortran_tests]} { return -1 }
20
21if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} \
22    {debug f90 quiet}] } {
23    return -1
24}
25
26if ![fortran_runto_main] {
27    untested "could not run to main"
28    return -1
29}
30
31# Check the association status of various types of VLA's
32# and pointer to VLA's.
33gdb_breakpoint [gdb_get_line_number "vla1-allocated"]
34gdb_continue_to_breakpoint "vla1-allocated"
35gdb_test "print l" " = \\.TRUE\\." \
36  "print vla1 allocation status (allocated)"
37
38gdb_breakpoint [gdb_get_line_number "vla2-allocated"]
39gdb_continue_to_breakpoint "vla2-allocated"
40gdb_test "print l" " = \\.TRUE\\." \
41  "print vla2 allocation status (allocated)"
42
43gdb_breakpoint [gdb_get_line_number "pvla-associated"]
44gdb_continue_to_breakpoint "pvla-associated"
45gdb_test "print l" " = \\.TRUE\\." \
46  "print pvla associated status (associated)"
47
48gdb_breakpoint [gdb_get_line_number "pvla-re-associated"]
49gdb_continue_to_breakpoint "pvla-re-associated"
50gdb_test "print l" " = \\.TRUE\\." \
51  "print pvla associated status (re-associated)"
52
53gdb_breakpoint [gdb_get_line_number "pvla-deassociated"]
54gdb_continue_to_breakpoint "pvla-deassociated"
55gdb_test "print l" " = \\.FALSE\\." \
56  "print pvla allocation status (deassociated)"
57
58gdb_breakpoint [gdb_get_line_number "vla1-deallocated"]
59gdb_continue_to_breakpoint "vla1-deallocated"
60gdb_test "print l" " = \\.FALSE\\." \
61  "print vla1 allocation status (deallocated)"
62gdb_test "print vla1" " = <not allocated>" \
63  "print deallocated vla1"
64
65gdb_breakpoint [gdb_get_line_number "vla2-deallocated"]
66gdb_continue_to_breakpoint "vla2-deallocated"
67gdb_test "print l" " = \\.FALSE\\." "print vla2 deallocated"
68gdb_test "print vla2" " = <not allocated>" "print deallocated vla2"
69