From 23209bcd37cb78d03baee669d20823a14757d143 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 21 Nov 2017 17:38:43 +0100 Subject: [PATCH] test: fix UDEV-WANTS testcase for non-bash shells (#7407) testsuite.sh uses "set -o pipefile", which is a bashism, hence use bash to invoke the script. --- test/TEST-17-UDEV-WANTS/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TEST-17-UDEV-WANTS/test.sh b/test/TEST-17-UDEV-WANTS/test.sh index 7beef7f..24989eb 100755 --- a/test/TEST-17-UDEV-WANTS/test.sh +++ b/test/TEST-17-UDEV-WANTS/test.sh @@ -32,7 +32,7 @@ test_setup() { Description=Testsuite service [Service] -ExecStart=/bin/sh -x /testsuite.sh +ExecStart=/bin/bash -x /testsuite.sh Type=oneshot StandardOutput=tty StandardError=tty -- 2.7.4