From: Boris Burkov Date: Wed, 13 Mar 2024 23:46:29 +0000 (-0700) Subject: btrfs/277: specify protocol version 3 for verity send X-Git-Tag: v2024.03.31~17 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cb30473e15c92709d8dcf9bd955d64635cfd578a;p=xfstests-dev.git btrfs/277: specify protocol version 3 for verity send This test uses btrfs send with fs-verity which relies on protocol version 3. The default in progs is version 2, so we need to explicitly specify the protocol version. Note that the max protocol version in progs is also currently broken (not properly gated by EXPERIMENTAL) so that needs fixing as well. Reviewed-by: Filipe Manana Reviewed-by: Anand Jain Signed-off-by: Boris Burkov Signed-off-by: Anand Jain [ added _require_btrfs_send_version 3 ] --- diff --git a/tests/btrfs/277 b/tests/btrfs/277 index f5684fde..5bb7ffab 100755 --- a/tests/btrfs/277 +++ b/tests/btrfs/277 @@ -29,6 +29,7 @@ _require_scratch_verity _require_fsverity_builtin_signatures _require_command "$SETCAP_PROG" setcap _require_command "$GETCAP_PROG" getcap +_require_btrfs_send_version 3 subv=$SCRATCH_MNT/subv fsv_file=$subv/file.fsv @@ -84,7 +85,7 @@ _test_send_verity() { echo "set subvolume read only" $BTRFS_UTIL_PROG property set $subv ro true echo "send subvolume" - $BTRFS_UTIL_PROG send $subv -f $stream -q >> $seqres.full + $BTRFS_UTIL_PROG send $subv -f $stream -q --proto=3 >> $seqres.full echo "blow away fs" _scratch_unmount