diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/class_array_14.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/class_array_14.f90 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/class_array_14.f90 b/gcc/testsuite/gfortran.dg/class_array_14.f90 index ad227a9074c..08a0e8ae7d5 100644 --- a/gcc/testsuite/gfortran.dg/class_array_14.f90 +++ b/gcc/testsuite/gfortran.dg/class_array_14.f90 @@ -15,7 +15,7 @@ subroutine test1() x%i = 77 call f(x) - if (x%i /= 6) call abort () + if (x%i /= 6) STOP 1 call f() contains subroutine f(y1) @@ -32,11 +32,11 @@ subroutine test2() class(mytype), allocatable :: x,y allocate (mytype2 :: x) call g(x) - if (allocated (x) .or. .not. same_type_as (x,y)) call abort() + if (allocated (x) .or. .not. same_type_as (x,y)) STOP 2 allocate (mytype2 :: x) call h(x) - if (allocated (x) .or. .not. same_type_as (x,y)) call abort() + if (allocated (x) .or. .not. same_type_as (x,y)) STOP 3 call h() contains |