diff options
author | Tony Cook <tony@develop-help.com> | 2020-10-26 16:44:14 +0000 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2020-11-05 15:47:30 +1100 |
commit | ab6d256e36aff793ab718c19e81b27210afcd4f4 (patch) | |
tree | 77332673854a4583ecb674ae88b1faf62c07625f /dist | |
parent | caf6f170e537c7fc6aa8802adde54d86ff2009a2 (diff) | |
download | perl-ab6d256e36aff793ab718c19e81b27210afcd4f4.tar.gz |
dragonfly BSD's default filesystem is mounted noatime by default
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Time-HiRes/t/utime.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dist/Time-HiRes/t/utime.t b/dist/Time-HiRes/t/utime.t index e2399b8feb..34519b395a 100644 --- a/dist/Time-HiRes/t/utime.t +++ b/dist/Time-HiRes/t/utime.t @@ -135,6 +135,7 @@ if ($^O eq 'cygwin') { print "# \$^O = $^O, atime = $atime, mtime = $mtime\n"; my $skip_atime = $^O eq 'netbsd' && tempfile_has_noatime_mount(); +$skip_atime = 1 if $^O eq 'dragonfly'; # noatime by default if ($skip_atime) { printf("# Skipping atime tests because tempfiles seem to be in a filesystem mounted with 'noatime' ($^O)\n'"); |