Subject: | stat.t occasionally fails on atime (fix included) |
Occasionally the atime test in stat.t will fail because of the clock rolling over to the next second.
I recommend changing the line:
is($io->atime, $atime);
to:
ok(($io->atime == $atime) || ($io->atime == ($atime+1)));
to accommodate this.