diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90 b/gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90 index c624de22d36..bdeff0cab5e 100644 --- a/gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90 +++ b/gcc/testsuite/gfortran.dg/allocatable_scalar_3.f90 @@ -16,10 +16,10 @@ allocate(x%i) x%i = 13 print *,x%i -if (.not. allocated(x%i)) call abort() +if (.not. allocated(x%i)) STOP 1 deallocate(x%i) -if (allocated(x%i)) call abort() +if (allocated(x%i)) STOP 2 end |