1# Copyright 2015-2023 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 return -1 28} 29 30# Check the association status of various types of VLA's 31# and pointer to VLA's. 32gdb_breakpoint [gdb_get_line_number "vla1-allocated"] 33gdb_continue_to_breakpoint "vla1-allocated" 34gdb_test "print l" " = \\.TRUE\\." \ 35 "print vla1 allocation status (allocated)" 36 37gdb_breakpoint [gdb_get_line_number "vla2-allocated"] 38gdb_continue_to_breakpoint "vla2-allocated" 39gdb_test "print l" " = \\.TRUE\\." \ 40 "print vla2 allocation status (allocated)" 41 42gdb_breakpoint [gdb_get_line_number "pvla-associated"] 43gdb_continue_to_breakpoint "pvla-associated" 44gdb_test "print l" " = \\.TRUE\\." \ 45 "print pvla associated status (associated)" 46 47gdb_breakpoint [gdb_get_line_number "pvla-re-associated"] 48gdb_continue_to_breakpoint "pvla-re-associated" 49gdb_test "print l" " = \\.TRUE\\." \ 50 "print pvla associated status (re-associated)" 51 52gdb_breakpoint [gdb_get_line_number "pvla-deassociated"] 53gdb_continue_to_breakpoint "pvla-deassociated" 54gdb_test "print l" " = \\.FALSE\\." \ 55 "print pvla allocation status (deassociated)" 56 57gdb_breakpoint [gdb_get_line_number "vla1-deallocated"] 58gdb_continue_to_breakpoint "vla1-deallocated" 59gdb_test "print l" " = \\.FALSE\\." \ 60 "print vla1 allocation status (deallocated)" 61gdb_test "print vla1" " = <not allocated>" \ 62 "print deallocated vla1" 63 64gdb_breakpoint [gdb_get_line_number "vla2-deallocated"] 65gdb_continue_to_breakpoint "vla2-deallocated" 66gdb_test "print l" " = \\.FALSE\\." "print vla2 deallocated" 67gdb_test "print vla2" " = <not allocated>" "print deallocated vla2" 68