summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocatable_scalar_8.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocatable_scalar_8.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/allocatable_scalar_8.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocatable_scalar_8.f90 b/gcc/testsuite/gfortran.dg/allocatable_scalar_8.f90
index f7940ede575..de5d1109072 100644
--- a/gcc/testsuite/gfortran.dg/allocatable_scalar_8.f90
+++ b/gcc/testsuite/gfortran.dg/allocatable_scalar_8.f90
@@ -6,11 +6,11 @@
!
program test
implicit none
- if (func () /= 'abc') call abort ()
+ if (func () /= 'abc') STOP 1
contains
function func() result (str)
character(len=3), allocatable :: str
- if (allocated (str)) call abort ()
+ if (allocated (str)) STOP 2
allocate (str)
str = 'abc'
end function func