From: Zbigniew Jędrzejewski-Szmek Date: Wed, 7 Dec 2022 08:52:35 +0000 (+0100) Subject: TEST-65: use [[ -v ]] more X-Git-Tag: v253-rc1~343^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F25632%2Fhead;p=thirdparty%2Fsystemd.git TEST-65: use [[ -v ]] more It's a bashism, but we use other bash features anyway, and it's cleaner and much less verbose. --- diff --git a/test/units/testsuite-64.sh b/test/units/testsuite-64.sh index 8e4653312ba..c4406f381bf 100755 --- a/test/units/testsuite-64.sh +++ b/test/units/testsuite-64.sh @@ -192,7 +192,7 @@ testcase_nvme_subsystem() { testcase_virtio_scsi_identically_named_partitions() { local num - if [[ -n "${ASAN_OPTIONS:-}" ]] || [[ "$(systemd-detect-virt -v)" == "qemu" ]]; then + if [[ -v ASAN_OPTIONS || "$(systemd-detect-virt -v)" == "qemu" ]]; then num=$((4 * 4)) else num=$((16 * 8)) @@ -306,7 +306,7 @@ testcase_simultaneous_events() { local -a devices symlinks local -A running - if [[ -n "${ASAN_OPTIONS:-}" ]] || [[ "$(systemd-detect-virt -v)" == "qemu" ]]; then + if [[ -v ASAN_OPTIONS || "$(systemd-detect-virt -v)" == "qemu" ]]; then num_part=2 iterations=10 timeout=240 @@ -401,7 +401,7 @@ testcase_lvm_basic() { /dev/disk/by-id/ata-foobar_deadbeeflvm{0..3} ) - if [[ -n "${ASAN_OPTIONS:-}" ]] || [[ "$(systemd-detect-virt -v)" == "qemu" ]]; then + if [[ -v ASAN_OPTIONS || "$(systemd-detect-virt -v)" == "qemu" ]]; then timeout=180 else timeout=30 @@ -454,7 +454,7 @@ testcase_lvm_basic() { helper_check_device_units # Same as above, but now with more "stress" - if [[ -n "${ASAN_OPTIONS:-}" ]] || [[ "$(systemd-detect-virt -v)" == "qemu" ]]; then + if [[ -v ASAN_OPTIONS || "$(systemd-detect-virt -v)" == "qemu" ]]; then iterations=10 else iterations=50 @@ -479,7 +479,7 @@ testcase_lvm_basic() { helper_check_device_units # Create & remove LVs in a loop, i.e. with more "stress" - if [[ -n "${ASAN_OPTIONS:-}" ]]; then + if [[ -v ASAN_OPTIONS ]]; then iterations=8 partitions=16 elif [[ "$(systemd-detect-virt -v)" == "qemu" ]]; then