summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dependency_43.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/dependency_43.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/dependency_43.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/dependency_43.f90 b/gcc/testsuite/gfortran.dg/dependency_43.f90
index c407369c5e6..e5d1887ea4c 100644
--- a/gcc/testsuite/gfortran.dg/dependency_43.f90
+++ b/gcc/testsuite/gfortran.dg/dependency_43.f90
@@ -9,6 +9,6 @@ program main
i1 = [ 1, 2, 3 ]
i2 = [ 3, 2, 1 ]
a (i1,1) = a (i2,2)
- if (a(1,1) /= 6.0 .or. a(2,1) /= 5.0 .or. a(3,1) /= 4.0) call abort
- if (a(1,2) /= 4.0 .or. a(2,2) /= 5.0 .or. a(3,2) /= 6.0) call abort
+ if (a(1,1) /= 6.0 .or. a(2,1) /= 5.0 .or. a(3,1) /= 4.0) STOP 1
+ if (a(1,2) /= 4.0 .or. a(2,2) /= 5.0 .or. a(3,2) /= 6.0) STOP 2
end program main