summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/use_24.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/use_24.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/use_24.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/use_24.f90 b/gcc/testsuite/gfortran.dg/use_24.f90
index b709347b0fd..2615ecbb199 100644
--- a/gcc/testsuite/gfortran.dg/use_24.f90
+++ b/gcc/testsuite/gfortran.dg/use_24.f90
@@ -37,7 +37,7 @@ contains
use mod1
type(t1) :: a
call a%get(j)
- if (j /= 2) call abort
+ if (j /= 2) STOP 1
end subroutine test1
subroutine test2()
@@ -45,7 +45,7 @@ contains
use mod2
type(t1) :: a
call a%get(j)
- if (j /= 2) call abort
+ if (j /= 2) STOP 2
end subroutine test2
end