annotate gcc/testsuite/gfortran.dg/pr20086.f90 @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900 (2020-05-25)
parents 84e7813d76e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do run }
kono
parents:
diff changeset
2 ! { dg-options "-std=legacy" }
kono
parents:
diff changeset
3 !
kono
parents:
diff changeset
4 ! PR 20086 - Missing characters in output with hollerith strings
kono
parents:
diff changeset
5 implicit none
kono
parents:
diff changeset
6 character*80 line
kono
parents:
diff changeset
7 write(line,2070)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
8 if (line.ne.' stiffness reformed for this high step')STOP 1
111
kono
parents:
diff changeset
9 write(line,2090)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
10 if (line.ne.' stiffness reformed for hello hello')STOP 2
111
kono
parents:
diff changeset
11 stop
kono
parents:
diff changeset
12
kono
parents:
diff changeset
13 2070 format (2x,37hstiffness reformed for this high step)
kono
parents:
diff changeset
14 2090 format (2x,34hstiffness reformed for hello hello)
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 end