summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocatable_scalar_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocatable_scalar_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/allocatable_scalar_1.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocatable_scalar_1.f90 b/gcc/testsuite/gfortran.dg/allocatable_scalar_1.f90
index d83d2f7f72b..12731940e05 100644
--- a/gcc/testsuite/gfortran.dg/allocatable_scalar_1.f90
+++ b/gcc/testsuite/gfortran.dg/allocatable_scalar_1.f90
@@ -10,9 +10,9 @@ real, allocatable :: scalar
allocate(scalar)
scalar = exp(1.)
print *,scalar
-if (.not. allocated(scalar)) call abort()
+if (.not. allocated(scalar)) STOP 1
deallocate(scalar)
-if (allocated(scalar)) call abort()
+if (allocated(scalar)) STOP 2
end