diff --git a/test/TEST-64-UDEV-STORAGE/test.sh b/test/TEST-64-UDEV-STORAGE/test.sh index 0c6e9dfa27f..c2db838b177 100755 --- a/test/TEST-64-UDEV-STORAGE/test.sh +++ b/test/TEST-64-UDEV-STORAGE/test.sh @@ -28,14 +28,14 @@ _host_has_feature() {( set -e case "${1:?}" in - multipath) - command -v multipath && command -v multipathd || return $? + btrfs) + modprobe -nv btrfs && command -v mkfs.btrfs && command -v btrfs || return $? ;; lvm) command -v lvm || return $? ;; - btrfs) - modprobe -nv btrfs && command -v mkfs.btrfs && command -v btrfs || return $? + multipath) + command -v multipath && command -v multipathd || return $? ;; *) echo >&2 "ERROR: Unknown feature '$1'"