From 7db2c621ddb427a42a64de98d74806b6ea05018a Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Mon, 6 Aug 2007 12:17:56 +0000 Subject: [PATCH] nan_1.f90: Rename module into aux2 to avoid cygwin hanging on the testcase. * gfortran.dg/nan_1.f90: Rename module into aux2 to avoid cygwin hanging on the testcase. From-SVN: r127240 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gfortran.dg/nan_1.f90 | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5324d97cb46..b50e7d2b1ed 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-08-06 Francois-Xavier Coudert + + * gfortran.dg/nan_1.f90: Rename module into aux2 to avoid cygwin + hanging on the testcase. + 2007-08-05 Andrew Pinski PR middle-end/32988 diff --git a/gcc/testsuite/gfortran.dg/nan_1.f90 b/gcc/testsuite/gfortran.dg/nan_1.f90 index 47cecbac8c8..59d4531de7f 100644 --- a/gcc/testsuite/gfortran.dg/nan_1.f90 +++ b/gcc/testsuite/gfortran.dg/nan_1.f90 @@ -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" } } -- 2.30.2