On 2024-04-29 20:42:05, Darrick J. Wong wrote: > From: Darrick J. Wong <djwong@xxxxxxxxxx> > > Add a test to make sure that we can disable fsverity on a file that > doesn't pass fsverity validation on its contents anymore. > > Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> > --- > tests/xfs/1881 | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > tests/xfs/1881.out | 28 +++++++++++++ > 2 files changed, 139 insertions(+) > create mode 100755 tests/xfs/1881 > create mode 100644 tests/xfs/1881.out > > > diff --git a/tests/xfs/1881 b/tests/xfs/1881 > new file mode 100755 > index 0000000000..411802d7c7 > --- /dev/null > +++ b/tests/xfs/1881 > @@ -0,0 +1,111 @@ > +#! /bin/bash > +# SPDX-License-Identifier: GPL-2.0 > +# Copyright (c) 2024 Oracle. All Rights Reserved. > +# > +# FS QA Test 1881 > +# > +# Corrupt fsverity descriptor, merkle tree blocks, and file contents. Ensure > +# that we can still disable fsverity, at least for the latter cases. > +# > +. ./common/preamble > +_begin_fstest auto quick verity > + > +_cleanup() > +{ > + cd / > + _restore_fsverity_signatures > + rm -f $tmp.* > +} > + > +. ./common/verity > +. ./common/filter > +. ./common/fuzzy > + > +_supported_fs xfs > +_require_scratch_verity > +_disable_fsverity_signatures > +_require_fsverity_corruption > +_require_xfs_io_command noverity > +_require_scratch_nocheck # corruption test > + > +_scratch_mkfs >> $seqres.full > +_scratch_mount > + > +_require_xfs_has_feature "$SCRATCH_MNT" verity > +VICTIM_FILE="$SCRATCH_MNT/a" > +_fsv_can_enable "$VICTIM_FILE" || _notrun "cannot enable fsverity" also here, if not needed in 1880 Looks good to me: Reviewed-by: Andrey Albershteyn <aalbersh@xxxxxxxxxx> -- - Andrey