]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
common/rc: skip ceph when atime is required
authorXiubo Li <xiubli@redhat.com>
Mon, 17 Apr 2023 02:41:34 +0000 (10:41 +0800)
committerZorro Lang <zlang@kernel.org>
Sun, 23 Apr 2023 18:48:02 +0000 (02:48 +0800)
Ceph won't maintain the atime, so just skip the tests when the atime
is required.

URL: https://tracker.ceph.com/issues/53844
Signed-off-by: Xiubo Li <xiubli@redhat.com>
Reviewed-by: Zorro Lang <zlang@redhat.com>
Signed-off-by: Zorro Lang <zlang@kernel.org>
common/rc

index 8a67952e6c642d1cb6f8c9d454337a49acdb6a57..3a41bd4551fe53925fb46384f9fb63f14b5fb9df 100644 (file)
--- a/common/rc
+++ b/common/rc
@@ -4055,6 +4055,9 @@ _require_atime()
        nfs|cifs|virtiofs)
                _notrun "atime related mount options have no effect on $FSTYP"
                ;;
+       ceph)
+               _notrun "atime not maintained by $FSTYP"
+               ;;
        esac
 
 }