From 5e58b58c478bd00c807bd7814ccab148d49cc901 Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Tue, 6 Nov 2018 09:08:40 -0500 Subject: [PATCH] tests: tpm: Use g_test_message rather than fprintf Display a message during the test using g_test_message rather than fprintf. Signed-off-by: Stefan Berger Reviewed-by: Thomas Huth --- tests/tpm-tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tpm-tests.c b/tests/tpm-tests.c index 93a5beba01..582ec0cfd4 100644 --- a/tests/tpm-tests.c +++ b/tests/tpm-tests.c @@ -22,7 +22,7 @@ static bool tpm_test_swtpm_skip(void) { if (!tpm_util_swtpm_has_tpm2()) { - fprintf(stderr, "swtpm not in PATH or missing --tpm2 support; "); + g_test_message("swtpm not in PATH or missing --tpm2 support"); return true; } -- GitLab