On Tue, Jul 28, 2020 at 07:51:41PM -0700, Darrick J. Wong wrote: > From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > > XFS filesystems require V5 format to support all three quota types at > the same time, so skip the test if we're testing XFS older than that. > > Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > --- Thanks for fixing it! Reviewed-by: Zorro Lang <zlang@xxxxxxxxxx> > tests/generic/603 | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/tests/generic/603 b/tests/generic/603 > index 54deaf13..fc3df6e5 100755 > --- a/tests/generic/603 > +++ b/tests/generic/603 > @@ -149,6 +149,10 @@ test_grace() > _supported_fs generic > _supported_os Linux > _require_scratch > +# xfs requires v5 format to support all three quota types at the same time > +if [ "$FSTYP" = "xfs" ]; then > + _require_scratch_xfs_crc > +fi > _require_setquota_project > _require_quota > _require_user >