1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-28 05:57:33 +03:00

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.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-07-14 22:18:38 +02:00
parent a318a5659a
commit b56a877ef8

View File

@ -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)));
}