diff gcc/testsuite/gfortran.dg/use_13.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line diff
--- a/gcc/testsuite/gfortran.dg/use_13.f90	Fri Oct 27 22:46:09 2017 +0900
+++ b/gcc/testsuite/gfortran.dg/use_13.f90	Thu Oct 25 07:37:49 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