summaryrefslogtreecommitdiff
path: root/src/test/test-fs-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-07-14 22:18:38 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-07-14 22:18:38 +0200
commitb56a877ef8851e53ccc47141b537736db135d389 (patch)
treecd97b8b1b023a0285c1bdfd7b58a8ec40fd37a75 /src/test/test-fs-util.c
parenta318a5659a7065123eba60471af0e999f7329797 (diff)
downloadsystemd-b56a877ef8851e53ccc47141b537736db135d389.tar.gz
test-fs-util: use log_info instead of printf
The test is failing in koji, and the line from printf() does not end up in the logs for some reason. log_info() works fine, so let's just use that here too.
Diffstat (limited to 'src/test/test-fs-util.c')
-rw-r--r--src/test/test-fs-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c
index 80c4c209b3..8d9a1974b2 100644
--- a/src/test/test-fs-util.c
+++ b/src/test/test-fs-util.c
@@ -858,7 +858,7 @@ static void test_path_is_encrypted_one(const char *p, int expect) {
return;
assert_se(r >= 0);
- printf("%s encrypted: %s\n", p, yes_no(r));
+ log_info("%s encrypted: %s", p, yes_no(r));
assert_se(expect < 0 || ((r > 0) == (expect > 0)));
}