Mercurial > hg > CbC > CbC_gcc
diff gcc/testsuite/gfortran.dg/use_13.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 84e7813d76e9 |
children |
line wrap: on
line diff
--- a/gcc/testsuite/gfortran.dg/use_13.f90 Thu Oct 25 08:08:40 2018 +0900 +++ b/gcc/testsuite/gfortran.dg/use_13.f90 Thu Oct 25 10:21:07 2018 +0900 @@ -25,17 +25,17 @@ ! All procedures/variables below refer to the ones in module "m" ! and not to the siblings in this module "m2". use m - if (fun() /= 42) call abort() - if (var /= 43) call abort() + if (fun() /= 42) STOP 1 + if (var /= 43) STOP 2 call fun2() - if (var /= 44) call abort() + if (var /= 44) STOP 3 end subroutine test integer function fun() - call abort() + STOP 4 fun = -3 end function fun subroutine fun2() - call abort() + STOP 5 end subroutine fun2 end module m2