summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/fmt_colon.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/fmt_colon.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/fmt_colon.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/fmt_colon.f90 b/gcc/testsuite/gfortran.dg/fmt_colon.f90
index 03d31f87004..34dfff16cf8 100644
--- a/gcc/testsuite/gfortran.dg/fmt_colon.f90
+++ b/gcc/testsuite/gfortran.dg/fmt_colon.f90
@@ -7,8 +7,8 @@ PROGRAM test
character(30) :: astring
WRITE(astring, 10) i
10 FORMAT('i =',I2:' this should not print')
- if (astring.ne."i = 1") call abort
+ if (astring.ne."i = 1") STOP 1
write(astring, 20) i, i
20 format('i =',I2:' this should print',I2)
- if (astring.ne."i = 1 this should print 1") call abort
+ if (astring.ne."i = 1 this should print 1") STOP 2
END PROGRAM test \ No newline at end of file