aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-08-06 12:17:56 +0000
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-08-06 12:17:56 +0000
commit7db2c621ddb427a42a64de98d74806b6ea05018a (patch)
treecddd8eca578819da2cd43129e8a66db10a610d14
parent5958f5cbe04796aed00e833d45e347d990aba506 (diff)
downloadgcc-7db2c621ddb427a42a64de98d74806b6ea05018a.zip
gcc-7db2c621ddb427a42a64de98d74806b6ea05018a.tar.gz
gcc-7db2c621ddb427a42a64de98d74806b6ea05018a.tar.bz2
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
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/nan_1.f908
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 5324d97..b50e7d2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
diff --git a/gcc/testsuite/gfortran.dg/nan_1.f90 b/gcc/testsuite/gfortran.dg/nan_1.f90
index 47cecba..59d4531 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" } }