Skip to content

Commit

Permalink
Merge f19ab1d into 158b05f
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultduponchelle committed Jul 6, 2021
2 parents 158b05f + f19ab1d commit e39de50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/File/stat.pm
Expand Up @@ -11,7 +11,7 @@ BEGIN { *warnif = \&warnings::warnif }

our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);

our $VERSION = '1.10';
our $VERSION = '1.11';

our @fields;
our ( $st_dev, $st_ino, $st_mode,
Expand Down
4 changes: 4 additions & 0 deletions lib/File/stat.t
Expand Up @@ -86,6 +86,10 @@ sub test_X_ops {

if ($^O eq "VMS" && $op =~ /[rwxRWX]/) {
is($vwarn, 1, "warning about VMS ACLs $desc");
} elsif ($^O eq "haiku" && $op =~ /A/) {
# atime is not stored on Haiku BFS
# and stat always returns local time instead
note("Not testing -A $desc_tail on Haiku");
} else {
is($rv, eval "-$op \$file", "correct overload $desc")
unless $access;
Expand Down

0 comments on commit e39de50

Please sign in to comment.