summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/arrayio_8.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/arrayio_8.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/arrayio_8.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/arrayio_8.f90 b/gcc/testsuite/gfortran.dg/arrayio_8.f90
index 7b609bd061c..c2fcbbf6995 100644
--- a/gcc/testsuite/gfortran.dg/arrayio_8.f90
+++ b/gcc/testsuite/gfortran.dg/arrayio_8.f90
@@ -9,9 +9,9 @@
character*8 rec(3)
rec = ""
write (rec,fmt=99999)
- if (rec(1).ne.'12345678') call abort()
- if (rec(2).ne.'record2') call abort()
- if (rec(3).ne.'record3') call abort()
+ if (rec(1).ne.'12345678') STOP 1
+ if (rec(2).ne.'record2') STOP 2
+ if (rec(3).ne.'record3') STOP 3
99999 format ('12345678',/'record2',/'record3')
end