annotate gcc/testsuite/gfortran.dg/pr20086.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
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)
kono
parents:
diff changeset
8 if (line.ne.' stiffness reformed for this high step')call abort
kono
parents:
diff changeset
9 write(line,2090)
kono
parents:
diff changeset
10 if (line.ne.' stiffness reformed for hello hello')call abort
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