summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2023-05-31 12:08:36 +0200
committerGitHub <noreply@github.com>2023-05-31 12:08:36 +0200
commit1a7e5c51dc56f827e82da43d7166ad105ca93d54 (patch)
tree4397adcb03e5f3c04e7e536e1e346d7331f66a10 /test
parentMerge pull request #27840 from mrc0mmand/gcc-13 (diff)
parenttest-dlopen: allow loading of multiple libraries (diff)
downloadsystemd-1a7e5c51dc56f827e82da43d7166ad105ca93d54.tar.xz
systemd-1a7e5c51dc56f827e82da43d7166ad105ca93d54.zip
Merge pull request #27853 from keszybz/various-bits-and-pieces-included-to-reuse-the-ci-run
Various bits and pieces included to reuse the ci run
Diffstat (limited to 'test')
-rwxr-xr-xtest/units/testsuite-35.sh4
-rwxr-xr-xtest/units/testsuite-58.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/units/testsuite-35.sh b/test/units/testsuite-35.sh
index 659882ed7a..2dd1a560c4 100755
--- a/test/units/testsuite-35.sh
+++ b/test/units/testsuite-35.sh
@@ -102,11 +102,11 @@ testcase_suspend_on_lid() {
echo "suspend not supported on this testbed, skipping"
return
fi
- if ! command -v evemu-device &>/dev/null; then
+ if ! command -v evemu-device >/dev/null; then
echo "command evemu-device not found, skipping"
return
fi
- if ! command -v evemu-event &>/dev/null; then
+ if ! command -v evemu-event >/dev/null; then
echo "command evemu-event not found, skipping"
return
fi
diff --git a/test/units/testsuite-58.sh b/test/units/testsuite-58.sh
index de00f59d26..521584892f 100755
--- a/test/units/testsuite-58.sh
+++ b/test/units/testsuite-58.sh
@@ -7,7 +7,7 @@ set -o pipefail
# shellcheck source=test/units/util.sh
. "$(dirname "$0")"/util.sh
-if ! command -v systemd-repart &>/dev/null; then
+if ! command -v systemd-repart >/dev/null; then
echo "no systemd-repart" >/skipped
exit 0
fi