On Mon, Apr 17, 2023 at 10:41:34AM +0800, xiubli@xxxxxxxxxx wrote: > From: Xiubo Li <xiubli@xxxxxxxxxx> > > 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@xxxxxxxxxx> > --- > common/rc | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/common/rc b/common/rc > index 90749343..3238842e 100644 > --- a/common/rc > +++ b/common/rc > @@ -3999,6 +3999,9 @@ _require_atime() > nfs|cifs|virtiofs) > _notrun "atime related mount options have no effect on $FSTYP" > ;; > + ceph) > + _notrun "atime not maintained by $FSTYP" Make sense to me. I'll change this line a bit when I merge it, to keep the line aligned (with above). Reviewed-by: Zorro Lang <zlang@xxxxxxxxxx> Thanks, Zorro > + ;; > esac > > } > -- > 2.39.1 >