summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/class_allocate_22.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/class_allocate_22.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/class_allocate_22.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/class_allocate_22.f90 b/gcc/testsuite/gfortran.dg/class_allocate_22.f90
index 5fec72fafe1..589548d58a2 100644
--- a/gcc/testsuite/gfortran.dg/class_allocate_22.f90
+++ b/gcc/testsuite/gfortran.dg/class_allocate_22.f90
@@ -19,8 +19,8 @@ program pr57117
end select
allocate(y, source=transpose(x))
- if (any( ubound(y) /= [6,2])) call abort()
- if (any(reshape(y(:,:)%i, [12]) /= [ 1,3,5,7,9,11, 2,4,6,8,10,12])) call abort()
+ if (any( ubound(y) /= [6,2])) STOP 1
+ if (any(reshape(y(:,:)%i, [12]) /= [ 1,3,5,7,9,11, 2,4,6,8,10,12])) STOP 2
deallocate (x,y)
end