summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocate_derived_5.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocate_derived_5.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/allocate_derived_5.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocate_derived_5.f90 b/gcc/testsuite/gfortran.dg/allocate_derived_5.f90
index 70d63aa1a46..00aa0cc8a6b 100644
--- a/gcc/testsuite/gfortran.dg/allocate_derived_5.f90
+++ b/gcc/testsuite/gfortran.dg/allocate_derived_5.f90
@@ -16,5 +16,5 @@ program fail1
type(b), allocatable :: c(:)
allocate(c(1))
- if (c(1) % acomp % i /= 5) call abort()
+ if (c(1) % acomp % i /= 5) STOP 1
end program fail1