gdb/testsuite: fix "continue outside of loop" TCL errors
[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] then {
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 if {[test_compiler_info {gcc-*}]} {
41 gdb_test "ptype nml" \
42 "type = Type nml\r\n *$int :: a\r\n *$int :: b\r\n *End Type nml"
43 gdb_test "print nml" \
44 "\\$\[0-9\]+ = \\( a = 10, b = 20 \\)"
45 } else {
46 gdb_test "ptype nml" \
47 "No symbol \"nml\" in current context\\."
48 gdb_test "print nml" \
49 "No symbol \"nml\" in current context\\."
50 }