1 # Copyright 2015-2024 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 standard_testfile "vla.f90" 17 load_lib fortran.exp 18 19 require allow_fortran_tests 20 21 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} \ 22 {debug f90 quiet}] } { 23 return -1 24 } 25 26 if ![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. 32 gdb_breakpoint [gdb_get_line_number "vla1-allocated"] 33 gdb_continue_to_breakpoint "vla1-allocated" 34 gdb_test "print l" " = \\.TRUE\\." \ 35 "print vla1 allocation status, allocated" 36 37 gdb_breakpoint [gdb_get_line_number "vla2-allocated"] 38 gdb_continue_to_breakpoint "vla2-allocated" 39 gdb_test "print l" " = \\.TRUE\\." \ 40 "print vla2 allocation status, allocated" 41 42 gdb_breakpoint [gdb_get_line_number "pvla-associated"] 43 gdb_continue_to_breakpoint "pvla-associated" 44 gdb_test "print l" " = \\.TRUE\\." \ 45 "print pvla associated status, associated" 46 47 gdb_breakpoint [gdb_get_line_number "pvla-re-associated"] 48 gdb_continue_to_breakpoint "pvla-re-associated" 49 gdb_test "print l" " = \\.TRUE\\." \ 50 "print pvla associated status, re-associated" 51 52 gdb_breakpoint [gdb_get_line_number "pvla-deassociated"] 53 gdb_continue_to_breakpoint "pvla-deassociated" 54 gdb_test "print l" " = \\.FALSE\\." \ 55 "print pvla allocation status, deassociated" 56 57 gdb_breakpoint [gdb_get_line_number "vla1-deallocated"] 58 gdb_continue_to_breakpoint "vla1-deallocated" 59 gdb_test "print l" " = \\.FALSE\\." \ 60 "print vla1 allocation status, deallocated" 61 gdb_test "print vla1" " = <not allocated>" \ 62 "print deallocated vla1" 63 64 gdb_breakpoint [gdb_get_line_number "vla2-deallocated"] 65 gdb_continue_to_breakpoint "vla2-deallocated" 66 gdb_test "print l" " = \\.FALSE\\." "print vla2 deallocated" 67 gdb_test "print vla2" " = <not allocated>" "print deallocated vla2" 68