diff gcc/testsuite/gfortran.dg/read_repeat.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line diff
--- a/gcc/testsuite/gfortran.dg/read_repeat.f90	Fri Oct 27 22:46:09 2017 +0900
+++ b/gcc/testsuite/gfortran.dg/read_repeat.f90	Thu Oct 25 07:37:49 2018 +0900
@@ -16,10 +16,10 @@
   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