summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f90 b/gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f90
index 48947cd2e66..6cc383c7192 100644
--- a/gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f90
+++ b/gcc/testsuite/gfortran.dg/alloc_comp_default_init_1.f90
@@ -12,13 +12,13 @@ program boh
call mah (1, c2)
call mah (2, c3)
!
- if (c1 /= c2) call abort
- if (c1 /= c3) call abort
+ if (c1 /= c2) STOP 1
+ if (c1 /= c3) STOP 1
!
call mah0 (c4) ! These calls deal with PR34704
call mah1 (c5)
!
- if (c4 /= c5) call abort
+ if (c4 /= c5) STOP 2
!
end program boh
!