diff options
Diffstat (limited to 'Test')
-rw-r--r-- | Test/C02cond.ztst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Test/C02cond.ztst b/Test/C02cond.ztst index 629fdd206..57427557f 100644 --- a/Test/C02cond.ztst +++ b/Test/C02cond.ztst @@ -139,6 +139,9 @@ elif [[ "$(find . -prune -fstype nfs 2>/dev/null)" == "." ]]; then print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with NFS)" true + elif test -f /etc/mtab && { grep $(df . | tail -n1 | awk '{print $1}') /etc/mtab | grep -q noatime; }; then + print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with noatime file system)" + true else [[ -N newnewnew && ! -N unmodified ]] fi |