In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ebcfa0534aa7072c0353af79a1e3d7e87678e73e?hp=1034e4c80e068f8cc1c701d7936bdb84c7d74735>

- Log -----------------------------------------------------------------
commit ebcfa0534aa7072c0353af79a1e3d7e87678e73e
Author: Tony Cook <t...@develop-help.com>
Date:   Tue Sep 21 14:03:37 2010 +1000

    compare stat results on a file that isn't touched elsewhere
    
    lib/File/stat.t compares two stat calls on t/TEST against each
    other, but other tests read t/TEST, modifying its access time,
    causing rare random failures in stat.t in parallel tests.
-----------------------------------------------------------------------

Summary of changes:
 lib/File/stat.t |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/File/stat.t b/lib/File/stat.t
index f104b74..11858ab 100644
--- a/lib/File/stat.t
+++ b/lib/File/stat.t
@@ -15,7 +15,7 @@ BEGIN {
         keys %Config;
 
     # Resolve symlink to ./TEST if this build is configured with -Dmksymlinks
-    our $file = 'TEST';
+    our $file = '../lib/File/stat.t';
     if ( $Dmksymlinks ) {
         $file = readlink $file;
         die "Can't readlink(TEST): $!" if ! defined $file;

--
Perl5 Master Repository

Reply via email to