Fortran, typeprint: Take level of details into account when printing elements of...
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.fortran / whatis_type.exp
CommitLineData
618f726f 1# Copyright 2013-2016 Free Software Foundation, Inc.
7f9b20bb
KB
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
16if { [skip_fortran_tests] } { continue }
17
18standard_testfile type.f90
0c13f7e5 19load_lib "fortran.exp"
7f9b20bb
KB
20
21if { [prepare_for_testing ${testfile}.exp ${testfile} \
22 ${srcfile} {debug f90}] } {
23 return -1
24}
25
26if ![runto MAIN__] {
27 fail "run to MAIN__"
28 return
29}
30
0c13f7e5
BH
31# Depending on the compiler being used, the type names can be printed differently.
32set int [fortran_int4]
33set real [fortran_real4]
34
7f9b20bb
KB
35gdb_breakpoint [gdb_get_line_number "bp1"]
36gdb_continue_to_breakpoint "bp1"
37
0c13f7e5
BH
38set t1_i "$int :: t1_i"
39set t1_r "$real :: t1_r"
7f9b20bb 40
9b2db1fd
BH
41gdb_test "whatis t1" "type = Type t1"
42gdb_test "whatis t1v" "type = Type t1"
7f9b20bb
KB
43
44gdb_test "ptype t1" \
3cd81d8d
BH
45 [multi_line "type = Type t1" \
46 " $t1_i" \
47 " $t1_r" \
48 "End Type t1"] \
7f9b20bb
KB
49 "ptype t1"
50gdb_test "ptype t1v" \
3cd81d8d
BH
51 [multi_line "type = Type t1" \
52 " $t1_i" \
53 " $t1_r" \
54 "End Type t1"] \
7f9b20bb 55 "ptype t1v"
This page took 0.294295 seconds and 4 git commands to generate.