summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/array_assignment_1.F90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/array_assignment_1.F90')
-rw-r--r--gcc/testsuite/gfortran.dg/array_assignment_1.F904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/array_assignment_1.F90 b/gcc/testsuite/gfortran.dg/array_assignment_1.F90
index 328107011cb..830b0caa504 100644
--- a/gcc/testsuite/gfortran.dg/array_assignment_1.F90
+++ b/gcc/testsuite/gfortran.dg/array_assignment_1.F90
@@ -6,7 +6,7 @@
! a temporary) match.
#define TST(b,c,d,e,f,g,r) a=init; a(b:c:d) = a(e:f:g); \
write(unit=line ,fmt="(9I1)") a;\
- if (line /= r) call abort ; \
+ if (line /= r) STOP 1; \
call mytst(b,c,d,e,f,g,r);
program main
@@ -35,5 +35,5 @@ subroutine mytst(b,c,d,e,f,g,r)
a = (/(i,i=1,9)/)
a(b:c:d) = a(e:f:g)
write (unit=line,fmt='(9I1)') a
- if (line /= r) call abort
+ if (line /= r) STOP 2
end subroutine mytst