Message ID | 20231207-btrfs-raid-v5-3-44aa1affe856@wdc.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fstests: add tests for btrfs' raid-stripe-tree feature | expand |
diff --git a/common/btrfs b/common/btrfs index e3ccb4fa07d4..bf69bcee158b 100644 --- a/common/btrfs +++ b/common/btrfs @@ -120,6 +120,13 @@ _require_btrfs_no_compress() fi } +_require_btrfs_no_nodatacow() +{ + if _normalize_mount_options "$MOUNT_OPTIONS" | grep -q "nodatacow"; then + _notrun "This test requires no nodatacow enabled" + fi +} + _require_btrfs_no_block_group_tree() { _scratch_mkfs > /dev/null 2>&1
Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> --- common/btrfs | 7 +++++++ 1 file changed, 7 insertions(+)