summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dtio_28.f03
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/dtio_28.f03')
-rw-r--r--gcc/testsuite/gfortran.dg/dtio_28.f034
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/dtio_28.f03 b/gcc/testsuite/gfortran.dg/dtio_28.f03
index c70dc344e64..053678b7fd8 100644
--- a/gcc/testsuite/gfortran.dg/dtio_28.f03
+++ b/gcc/testsuite/gfortran.dg/dtio_28.f03
@@ -68,7 +68,7 @@ PROGRAM p
j=99
k=99
READ (unit, nml, iostat=iostatus)
- if (iostatus.ne.0) call abort
- if (j.ne.1 .or. k.ne.2 .or. x%c.ne.'a' .or. y%c.ne.'b' .or. z%c.ne.'c') call abort
+ if (iostatus.ne.0) STOP 1
+ if (j.ne.1 .or. k.ne.2 .or. x%c.ne.'a' .or. y%c.ne.'b' .or. z%c.ne.'c') STOP 2
!WRITE(*, nml)
END PROGRAM p