]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.fortran/common-block.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.fortran / common-block.exp
CommitLineData
1d506c26 1# Copyright 2008-2024 Free Software Foundation, Inc.
4357ac6c
TT
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
1cc75e92 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
4357ac6c
TT
15
16# This file was written by Jan Kratochvil <jan.kratochvil@redhat.com>.
17
57b7402d 18require allow_fortran_tests
4357ac6c
TT
19
20standard_testfile .f90
0c13f7e5 21load_lib "fortran.exp"
4357ac6c 22
5b362f04 23if {[prepare_for_testing "failed to prepare" ${testfile} \
4357ac6c
TT
24 $srcfile {debug f90 quiet}]} {
25 return -1
26}
27
49bb4744 28if {![fortran_runto_main]} {
cdd42066 29 return
4357ac6c
TT
30}
31
32gdb_breakpoint [gdb_get_line_number "stop-here-out"]
33gdb_continue_to_breakpoint "stop-here-out"
34
35# Common block naming with source name /foo/:
36# .symtab DW_TAG_common_block's DW_AT_name
37# Intel Fortran foo_ foo_
38# GNU Fortran foo_ foo
39#set suffix "_"
40set suffix ""
41
0c13f7e5
BH
42# Depending on the compiler being used, the type names can be printed differently.
43set int4 [fortran_int4]
44set real4 [fortran_real4]
45set real8 [fortran_real8]
4357ac6c
TT
46
47gdb_test "whatis foo$suffix" "No symbol \"foo$suffix\" in current context."
48gdb_test "ptype foo$suffix" "No symbol \"foo$suffix\" in current context."
49gdb_test "p foo$suffix" "No symbol \"foo$suffix\" in current context."
50gdb_test "whatis fo_o$suffix" "No symbol \"fo_o$suffix\" in current context."
51gdb_test "ptype fo_o$suffix" "No symbol \"fo_o$suffix\" in current context."
52gdb_test "p fo_o$suffix" "No symbol \"fo_o$suffix\" in current context."
53
ebad7c66
NCK
54gdb_test_multiple "info locals" "info locals out" {
55 # gfortran
56 -re -wrap "ix_x = 11\r\niy_y = 22\r\niz_z = 33\r\nix = 1\r\niy = 2\r\niz = 3" {
57 pass $gdb_test_name
58 }
59 # ifx/ifort/flang
60 -re -wrap "ix = 1\r\niy = 2\r\niz = 3\r\nix_x = 11\r\niy_y = 22\r\niz_z = 33" {
61 pass $gdb_test_name
62 }
63}
64
65gdb_test_multiple "info common" "info common out" {
66 # gfortran
67 -re -wrap "Contents of F77 COMMON block 'fo_o':\r\nix_x = 11\r\niy_y = 22\r\niz_z = 33\r\n\r\nContents of F77 COMMON block 'foo':\r\nix = 1\r\niy = 2\r\niz = 3" {
68 pass $gdb_test_name
69 }
70 # ifx/ifort/flang
71 -re -wrap "Contents of F77 COMMON block 'foo_?':\r\nix = 1\r\niy = 2\r\niz = 3\r\n\r\nContents of F77 COMMON block 'fo_o_?':\r\nix_x = 11\r\niy_y = 22\r\niz_z = 33" {
72 pass $gdb_test_name
73 }
74}
4357ac6c
TT
75
76gdb_test "ptype ix" "type = $int4" "ptype ix out"
77gdb_test "ptype iy" "type = $real4" "ptype iy out"
78gdb_test "ptype iz" "type = $real8" "ptype iz out"
79gdb_test "ptype ix_x" "type = $int4" "ptype ix_x out"
80gdb_test "ptype iy_y" "type = $real4" "ptype iy_y out"
81gdb_test "ptype iz_z" "type = $real8" "ptype iz_z out"
82
83gdb_test "p ix" " = 1 *" "p ix out"
84gdb_test "p iy" " = 2 *" "p iy out"
85gdb_test "p iz" " = 3 *" "p iz out"
86gdb_test "p ix_x" " = 11 *" "p ix_x out"
87gdb_test "p iy_y" " = 22 *" "p iy_y out"
88gdb_test "p iz_z" " = 33 *" "p iz_z out"
89
90gdb_breakpoint [gdb_get_line_number "stop-here-in"]
91gdb_continue_to_breakpoint "stop-here-in"
92
93gdb_test "whatis foo$suffix" "No symbol \"foo$suffix\" in current context." "whatis foo$suffix in"
94gdb_test "ptype foo$suffix" "No symbol \"foo$suffix\" in current context." "ptype foo$suffix in"
95gdb_test "p foo$suffix" "No symbol \"foo$suffix\" in current context." "p foo$suffix in"
96gdb_test "whatis fo_o$suffix" "No symbol \"fo_o$suffix\" in current context." "whatis fo_o$suffix in"
97gdb_test "ptype fo_o$suffix" "No symbol \"fo_o$suffix\" in current context." "ptype fo_o$suffix in"
98gdb_test "p fo_o$suffix" "No symbol \"fo_o$suffix\" in current context." "p fo_o$suffix in"
99
ebad7c66
NCK
100gdb_test_multiple "info locals" "info locals in" {
101 # gfortran
102 -re -wrap "ix = 11\r\niy2 = 22\r\niz = 33\r\nix_x = 1\r\niy_y = 2\r\niz_z2 = 3\r\niy = 5\r\niz_z = 55" {
103 pass $gdb_test_name
104 }
105 # ifx
106 -re -wrap "ix = 11\r\niy2 = 22\r\niz = 33\r\nix_x = 1\r\niy_y = 2\r\niz_z2 = 3\r\niz_z = 55\r\niy = 5" {
107 pass $gdb_test_name
108 }
109 # ifort
110 -re -wrap "iz_z = 55\r\niy = 5\r\nix = 11\r\niy2 = 22\r\niz = 33\r\nix_x = 1\r\niy_y = 2\r\niz_z2 = 3" {
111 pass $gdb_test_name
112 }
113}
4357ac6c
TT
114gdb_test "info common" "Contents of F77 COMMON block 'fo_o':\r\nix = 11\r\niy2 = 22\r\niz = 33\r\n\r\nContents of F77 COMMON block 'foo':\r\nix_x = 1\r\niy_y = 2\r\niz_z2 = 3" "info common in"
115
116gdb_test "ptype ix" "type = $int4" "ptype ix in"
117gdb_test "ptype iy2" "type = $real4" "ptype iy2 in"
118gdb_test "ptype iz" "type = $real8" "ptype iz in"
119gdb_test "ptype ix_x" "type = $int4" "ptype ix_x in"
120gdb_test "ptype iy_y" "type = $real4" "ptype iy_y in"
121gdb_test "ptype iz_z2" "type = $real8" "ptype iz_z2 in"
122
123gdb_test "p ix" " = 11 *" "p ix in"
124gdb_test "p iy2" " = 22 *" "p iy2 in"
125gdb_test "p iz" " = 33 *" "p iz in"
126gdb_test "p ix_x" " = 1 *" "p ix_x in"
127gdb_test "p iy_y" " = 2 *" "p iy_y in"
128gdb_test "p iz_z2" " = 3 *" "p iz_z2 in"