nan_1.f90: Rename module into aux2 to avoid cygwin hanging on the testcase.
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Mon, 6 Aug 2007 12:17:56 +0000 (12:17 +0000)
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Mon, 6 Aug 2007 12:17:56 +0000 (12:17 +0000)
* gfortran.dg/nan_1.f90: Rename module into aux2 to avoid cygwin
hanging on the testcase.

From-SVN: r127240

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/nan_1.f90

index 5324d97..b50e7d2 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * gfortran.dg/nan_1.f90: Rename module into aux2 to avoid cygwin
+       hanging on the testcase.
+
 2007-08-05  Andrew Pinski  <andrew_pinski@playstation.sony.com>
 
        PR middle-end/32988
index 47cecba..59d4531 100644 (file)
@@ -3,7 +3,7 @@
 !
 ! { dg-do run }
 !
-module aux
+module aux2
   interface isnan
     module procedure isnan_r
     module procedure isnan_d
@@ -42,10 +42,10 @@ contains
 
     isinf = (x > huge(x)) .or. (x < -huge(x))
   end function isinf_d
-end module aux
+end module aux2
 
 program test
-  use aux
+  use aux2
   implicit none
   real :: nan, large, inf
 
@@ -121,4 +121,4 @@ program test
 
 end program test
 
-! { dg-final { cleanup-modules "aux" } }
+! { dg-final { cleanup-modules "aux2" } }