summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/read_repeat.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/read_repeat.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/read_repeat.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/read_repeat.f90 b/gcc/testsuite/gfortran.dg/read_repeat.f90
index e0bf39ee01b..aa64fe8293c 100644
--- a/gcc/testsuite/gfortran.dg/read_repeat.f90
+++ b/gcc/testsuite/gfortran.dg/read_repeat.f90
@@ -16,10 +16,10 @@ program rread
read(10,*) (iarr(i), i=1,7)
read(10,*) ia, ib
- if (any(iarr(1:2).ne.1)) call abort
- if (any(iarr(3:5).ne.2)) call abort
- if (any(iarr(6:7).ne.0)) call abort
- if (ia .ne. 12 .or. ib .ne. 13) call abort
+ if (any(iarr(1:2).ne.1)) STOP 1
+ if (any(iarr(3:5).ne.2)) STOP 2
+ if (any(iarr(6:7).ne.0)) STOP 3
+ if (ia .ne. 12 .or. ib .ne. 13) STOP 4
close(10)
end program rread