gdb/testsuite: remove use of then keyword from gdb.fortran/*.exp
[binutils-gdb.git] / gdb / testsuite / gdb.fortran / namelist.exp
1 # Copyright (C) 2021-2022 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 if { [skip_fortran_tests] } { return -1 }
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 perror "couldn't run to main"
30 return
31 }
32
33 # Depending on the compiler being used, the type names can be printed
34 # differently.
35 set int [fortran_int4]
36
37 gdb_breakpoint [gdb_get_line_number "Display namelist"]
38 gdb_continue_to_breakpoint "Display namelist"
39
40 # DW_TAG_namelist is supported starting gcc 4.9.
41 set supported [expr \
42 [test_compiler_info {gfortran-*} f90] \
43 && [gcc_major_version {gfortran-*} f90] >= 4.9]
44 if { $supported } {
45 gdb_test "ptype nml" \
46 "type = Type nml\r\n *$int :: a\r\n *$int :: b\r\n *End Type nml"
47 gdb_test "print nml" \
48 "\\$\[0-9\]+ = \\( a = 10, b = 20 \\)"
49 } else {
50 gdb_test "ptype nml" \
51 "No symbol \"nml\" in current context\\."
52 gdb_test "print nml" \
53 "No symbol \"nml\" in current context\\."
54 }