1 # Copyright (C) 2021-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 # This file is part of the gdb testsuite. It contains tests for fortran 17 # namelist. 18 19 require allow_fortran_tests 20 21 standard_testfile .f90 22 load_lib "fortran.exp" 23 24 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug f90}]} { 25 return -1 26 } 27 28 if {![fortran_runto_main]} { 29 return 30 } 31 32 # Depending on the compiler being used, the type names can be printed 33 # differently. 34 set int [fortran_int4] 35 36 gdb_breakpoint [gdb_get_line_number "Display namelist"] 37 gdb_continue_to_breakpoint "Display namelist" 38 39 # DW_TAG_namelist is supported starting gcc 4.9. 40 set supported [expr \ 41 [test_compiler_info {gfortran-*} f90] \ 42 && [gcc_major_version {gfortran-*} f90] >= 4.9] 43 if { $supported } { 44 gdb_test "ptype nml" \ 45 "type = Type nml\r\n *$int :: a\r\n *$int :: b\r\n *End Type nml" 46 gdb_test "print nml" \ 47 "\\$\[0-9\]+ = \\( a = 10, b = 20 \\)" 48 } else { 49 gdb_test "ptype nml" \ 50 "No symbol \"nml\" in current context\\." 51 gdb_test "print nml" \ 52 "No symbol \"nml\" in current context\\." 53 } 54