From 0ea21d9e88e40452c741940a54e5db244d3a04e4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 3 May 2018 15:47:42 +0200 Subject: [PATCH] test: don't send image building output to /dev/null (#8886) Yes, the output is sometimes annyoing, but /dev/null is not the right place... I figure this redirection was left in from some debugging session, let's fix it, and make the setup_basic_environment invocation like in all other test scripts. --- test/TEST-15-DROPIN/test.sh | 2 +- test/TEST-22-TMPFILES/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/TEST-15-DROPIN/test.sh b/test/TEST-15-DROPIN/test.sh index b85bffafafb..cc0d56da8a3 100755 --- a/test/TEST-15-DROPIN/test.sh +++ b/test/TEST-15-DROPIN/test.sh @@ -9,7 +9,7 @@ TEST_NO_QEMU=1 test_setup() { # create the basic filesystem layout - setup_basic_environment >/dev/null + setup_basic_environment # mask some services that we do not want to run in these tests ln -s /dev/null $initdir/etc/systemd/system/systemd-hwdb-update.service diff --git a/test/TEST-22-TMPFILES/test.sh b/test/TEST-22-TMPFILES/test.sh index ca789333807..5b8abbfff5e 100755 --- a/test/TEST-22-TMPFILES/test.sh +++ b/test/TEST-22-TMPFILES/test.sh @@ -9,7 +9,7 @@ TEST_NO_QEMU=1 test_setup() { # create the basic filesystem layout - setup_basic_environment >/dev/null + setup_basic_environment inst_binary mv inst_binary stat inst_binary seq -- 2.47.3