From: Thomas Huth Date: Wed, 24 Apr 2019 09:43:13 +0000 (+0200) Subject: tests/tpm-tests: Use g_test_skip() to mark skipped tests X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8a17fbf640109076cbfda9bb5860c67367ae0020;p=qemu.git tests/tpm-tests: Use g_test_skip() to mark skipped tests Since we do not use gtester anymore (which had a bug here), we can now use g_test_skip() to mark skipped tests. Reviewed-by: Marc-André Lureau Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Stefan Berger Message-Id: <20190424094557.28404-1-thuth@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/tests/tpm-tests.c b/tests/tpm-tests.c index 582ec0cfd4..e640777aa9 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()) { - g_test_message("swtpm not in PATH or missing --tpm2 support"); + g_test_skip("swtpm not in PATH or missing --tpm2 support"); return true; }