Dearest Monks,
While brewing some perl, I noticed that the following test fails:
#!/usr/bin/perl -w
BEGIN {
unshift @INC, 't/lib/';
}
chdir 't';
use ExtUtils::Command;
use Test::More tests => 1;
open FILE, ">source" or die $!;
print FILE "stuff\n";
close FILE;
# Instead of sleeping to make the file time older
utime time - 900, time - 900, "source";
END { 1 while unlink "source", "dest"; }
# Win32 bug, cp wouldn't update mtime.
{
local @ARGV = qw(source dest);
cp();
my $mtime = (stat("dest"))[9];
my $now = time;
cmp_ok( abs($mtime - $now), '<=', 1, 'cp updated mtime' );
}
yielding the following output:
not ok 1 - cp updated mtime
# Failed test 'cp updated mtime'
# at cp.t line 27.
# '199'
# <=
# '1'
# Looks like you failed 1 test of 1.
I think it's clear that we're creating some file at some time in the past and then hoping for a cp into the present. Is there something funky that I should worry about? I'm running OpenSUSE 12.2.
The test passes on OS X 10.6.8...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.