summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/fmt_tl.f
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/fmt_tl.f')
-rw-r--r--gcc/testsuite/gfortran.dg/fmt_tl.f12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/gfortran.dg/fmt_tl.f b/gcc/testsuite/gfortran.dg/fmt_tl.f
index 656499ed05e..619f8c9691c 100644
--- a/gcc/testsuite/gfortran.dg/fmt_tl.f
+++ b/gcc/testsuite/gfortran.dg/fmt_tl.f
@@ -8,20 +8,20 @@
x = 12.34
write(line,10) x
10 format(tr2,tl2,g11.4)
- if (line.ne.' 12.34 ') call abort()
+ if (line.ne.' 12.34 ') STOP 1
write(line,20) x
20 format(tr5,tl3,g11.4)
- if (line.ne.' 12.34 ') call abort()
+ if (line.ne.' 12.34 ') STOP 2
write(line,30) x
30 format(tr5,tl3,tl3,g11.4)
- if (line.ne.' 12.34 ') call abort()
+ if (line.ne.' 12.34 ') STOP 3
write(line,40) x
40 format(tr25,tl35,f11.4)
- if (line.ne.' 12.3400 ') call abort()
+ if (line.ne.' 12.3400 ') STOP 4
write(line,50) x
50 format(tl5,tr3,f11.4)
- if (line.ne.' 12.3400 ') call abort()
+ if (line.ne.' 12.3400 ') STOP 5
write(line,60) x
60 format(t5,tl3,f11.4)
- if (line.ne.' 12.3400 ') call abort()
+ if (line.ne.' 12.3400 ') STOP 6
end