]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.fortran/info-types.exp
Update copyright year range in all GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.fortran / info-types.exp
CommitLineData
b811d2c2 1# Copyright 2019-2020 Free Software Foundation, Inc.
1f20c35e
AB
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 tests 'info types' for some Fortran types.
17
18load_lib "fortran.exp"
d57cbee9 19load_lib "sym-info-cmds.exp"
1f20c35e
AB
20
21if { [skip_fortran_tests] } { continue }
22
59c35742 23standard_testfile info-types.f90 info-types-2.f90
1f20c35e 24
59c35742
AB
25if { [prepare_for_testing "failed to prepare" $testfile \
26 [list $srcfile2 $srcfile] {debug f90}] } {
1f20c35e
AB
27 return -1
28}
29
30if { ![runto MAIN__] } {
31 perror "Could not run to breakpoint `MAIN__'."
32 continue
33}
34
35set integer4 [fortran_int4]
8077c50d 36set integer8 [fortran_int8]
1f20c35e
AB
37set logical4 [fortran_logical4]
38set character1 [fortran_character1]
165f8965 39set real4 [fortran_real4]
1f20c35e 40
d57cbee9
AB
41GDBInfoSymbols::run_command "info types"
42GDBInfoSymbols::check_header "All defined types:"
43
44GDBInfoSymbols::check_entry "${srcfile}" "" "${character1}"
45GDBInfoSymbols::check_entry "${srcfile}" "" "${integer4}"
46GDBInfoSymbols::check_entry "${srcfile}" "" "${logical4}"
47GDBInfoSymbols::check_entry "${srcfile}" "$decimal" "Type m1t1;"
48GDBInfoSymbols::check_entry "${srcfile}" "" "${real4}"
49GDBInfoSymbols::check_entry "${srcfile}" "37" "Type s1;"
50
51return 0
52
1f20c35e
AB
53gdb_test "info types" \
54 [multi_line \
55 "All defined types:" \
56 "" \
57 "File .*:" \
58 "\[\t \]+${character1}" \
59 "\[\t \]+${integer4}" \
8077c50d
TV
60 "(\[\t \]+${integer8}" \
61 ")?\[\t \]+${logical4}" \
165f8965 62 "(35:\[\t \]+Type __vtype_mod1_M1t1;" \
8077c50d 63 ")?$decimal:\[\t \]+Type m1t1;" \
165f8965
AB
64 "\[\t \]+${real4}" \
65 "37:\[\t \]+Type s1;(" \
8077c50d 66 ".*)?"]