summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/shift-kind_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/shift-kind_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/shift-kind_2.f9016
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/testsuite/gfortran.dg/shift-kind_2.f90 b/gcc/testsuite/gfortran.dg/shift-kind_2.f90
index 30e32639820..3d1bdef3963 100644
--- a/gcc/testsuite/gfortran.dg/shift-kind_2.f90
+++ b/gcc/testsuite/gfortran.dg/shift-kind_2.f90
@@ -21,12 +21,12 @@ program main
d2 = 1
d4 = 1
d8 = 1
- if (any(eoshift(r,shift=s1,dim=d1) /= r1)) call abort
- if (any(eoshift(r,shift=s2,dim=d2) /= r1)) call abort
- if (any(eoshift(r,shift=s4,dim=d4) /= r1)) call abort
- if (any(eoshift(r,shift=s8,dim=d8) /= r1)) call abort
- if (any(cshift(r,shift=s1,dim=d1) /= r2)) call abort
- if (any(cshift(r,shift=s2,dim=d2) /= r2)) call abort
- if (any(cshift(r,shift=s4,dim=d4) /= r2)) call abort
- if (any(cshift(r,shift=s8,dim=d8) /= r2)) call abort
+ if (any(eoshift(r,shift=s1,dim=d1) /= r1)) STOP 1
+ if (any(eoshift(r,shift=s2,dim=d2) /= r1)) STOP 2
+ if (any(eoshift(r,shift=s4,dim=d4) /= r1)) STOP 3
+ if (any(eoshift(r,shift=s8,dim=d8) /= r1)) STOP 4
+ if (any(cshift(r,shift=s1,dim=d1) /= r2)) STOP 5
+ if (any(cshift(r,shift=s2,dim=d2) /= r2)) STOP 6
+ if (any(cshift(r,shift=s4,dim=d4) /= r2)) STOP 7
+ if (any(cshift(r,shift=s8,dim=d8) /= r2)) STOP 8
end program main