Author: chromatic
Date: Tue Apr 25 09:12:36 2006
New Revision: 12426

Modified:
   trunk/t/configure/step.t

Log:
Close open files before deleting to fix VC8 failures (reported by Ron Blaschke).

Modified: trunk/t/configure/step.t
==============================================================================
--- trunk/t/configure/step.t    (original)
+++ trunk/t/configure/step.t    Tue Apr 25 09:12:36 2006
@@ -83,6 +83,8 @@
 
     # copy file descriptors
     open OLDERR, ">&STDERR";
+    $fromfile->close();
+    $tofile->close();
 
     ok(move_if_diff("$fromfname", "$tofname"),
         "move_if_diff() true return status");

Reply via email to