annotate gcc/testsuite/gfortran.dg/pr20086.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
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