OSDN Git Service

* write_to_null.f90: Rename to write_to_null.F90.
authorfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 10 May 2008 19:37:45 +0000 (19:37 +0000)
committerfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 10 May 2008 19:37:45 +0000 (19:37 +0000)
* write_to_null.F90: On Windows, "nul" is the equivalent of the
Unix /dev/null.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135158 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/write_to_null.F90 [moved from gcc/testsuite/gfortran.dg/write_to_null.f90 with 56% similarity]

index e9dc4f8..395a041 100644 (file)
@@ -1,3 +1,9 @@
+2008-05-10  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
+
+       * write_to_null.f90: Rename to write_to_null.F90.
+       * write_to_null.F90: On Windows, "nul" is the equivalent of the
+       Unix /dev/null.
+
 2008-05-10  Richard Sandiford  <rdsandiford@googlemail.com>
 
        PR rtl-optimization/33642
similarity index 56%
rename from gcc/testsuite/gfortran.dg/write_to_null.f90
rename to gcc/testsuite/gfortran.dg/write_to_null.F90
index c6f12cb..bce1db0 100644 (file)
@@ -1,8 +1,15 @@
 ! { dg-do run }
 ! pr18983
 ! could not write to /dev/null
+
+#if defined  _WIN32
+#define DEV_NULL "nul"
+#else
+#define DEV_NULL "/dev/null"
+#endif
+
        integer i
-       open(10,file="/dev/null")
+       open(10,file=DEV_NULL)
        do i = 1,100
          write(10,*) "Hello, world"
        end do