summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/allocate_with_source_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocate_with_source_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/allocate_with_source_2.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocate_with_source_2.f90 b/gcc/testsuite/gfortran.dg/allocate_with_source_2.f90
index 8e48b226062..16732e23f1c 100644
--- a/gcc/testsuite/gfortran.dg/allocate_with_source_2.f90
+++ b/gcc/testsuite/gfortran.dg/allocate_with_source_2.f90
@@ -10,7 +10,7 @@ program helloworld
character(:),allocatable::string
real::rnd
call hello(5, string)
- if (string /= 'hello' .or. len(string) /= 5) call abort
+ if (string /= 'hello' .or. len(string) /= 5) STOP 1
contains
subroutine hello (n,string)
character(:),allocatable,intent(out)::string