From 5f25c30ee8b0fe0880939a1ff593cb05f574fa21 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Tue, 21 Sep 2021 20:56:24 +0200 Subject: [PATCH] test: sort the features alphabetically --- test/TEST-64-UDEV-STORAGE/test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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'"