]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
fstests: btrfs/195: skip raid setups not in the profile configs
authorJosef Bacik <josef@toxicpanda.com>
Tue, 19 Mar 2024 16:55:57 +0000 (12:55 -0400)
committerAnand Jain <anand.jain@oracle.com>
Sun, 24 Mar 2024 11:57:42 +0000 (19:57 +0800)
You can specify a custom BTRFS_PROFILE_CONFIGS to skip certain raid
configurations in the tests, however btrfs/195 doesn't honor this
currently.  Fix this up by getting the profile configs and skipping any
configurations that are not listed in BTRFS_PROFILE_CONFIGS.

Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Anand Jain <anand.jain@oracle.com>
tests/btrfs/195

index 96cc41343925927405b542c17e3792c7ccbed06d..df8f5ed6e47eac430eefc3df79aef86a4cf08bff 100755 (executable)
@@ -21,6 +21,9 @@ _require_scratch_dev_pool 4
 # Zoned btrfs only supports SINGLE profile
 _require_non_zoned_device "${SCRATCH_DEV}"
 
+# Load up the available configs
+_btrfs_get_profile_configs
+
 declare -a TEST_VECTORS=(
 # $nr_dev_min:$data:$metadata:$data_convert:$metadata_convert
 "4:single:raid1"
@@ -38,6 +41,11 @@ run_testcase() {
        src_type=${args[1]}
        dst_type=${args[2]}
 
+       if [[ ! "${_btrfs_profile_configs[@]}" =~ "$dst_type" ]]; then
+               echo "=== Skipping test: $1 ===" >> $seqres.full
+               return
+       fi
+
        _scratch_dev_pool_get $num_disks
 
        echo "=== Running test: $1 ===" >> $seqres.full