summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/streamio_9.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/streamio_9.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/streamio_9.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/streamio_9.f90 b/gcc/testsuite/gfortran.dg/streamio_9.f90
index 150c1c6c393..b6bddb973f8 100644
--- a/gcc/testsuite/gfortran.dg/streamio_9.f90
+++ b/gcc/testsuite/gfortran.dg/streamio_9.f90
@@ -21,9 +21,9 @@ program pr29053
do i = 1, 10
t = i * dt
read(12) a
- if (any(a.ne.b)) call abort()
+ if (any(a.ne.b)) STOP 1
read(11) u
- if (u.ne.t) call abort()
+ if (u.ne.t) STOP 2
end do
close(11, status="delete")
close(12, status="delete")