From: Frantisek Sumsal Date: Tue, 21 Sep 2021 18:56:24 +0000 (+0200) Subject: test: sort the features alphabetically X-Git-Tag: v250-rc1~594^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f25c30ee8b0fe0880939a1ff593cb05f574fa21;p=thirdparty%2Fsystemd.git test: sort the features alphabetically --- 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'"