gdb/fortran: Add Fortran 'kind' intrinsic and keyword
[external/binutils.git] / gdb / testsuite / gdb.fortran / type-kinds.exp
1 # Copyright 2019 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 is a set of tests related to GDB's ability to parse and
17 # correctly handle the (kind=N) type adjustment mechanism within
18 # Fortran.
19
20 load_lib "fortran.exp"
21
22 if { [skip_fortran_tests] } { continue }
23
24 # Test parsing of `(kind=N)` type modifiers.
25 proc test_basic_parsing_of_type_kinds {} {
26     gdb_test "p ((character (kind=1)) 1)" " = 1"
27 }
28
29 clean_restart
30
31 if [set_lang_fortran] then {
32     test_basic_parsing_of_type_kinds
33 } else {
34     warning "$test_name tests suppressed." 0
35 }