diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2018-10-03 17:21:29 +0400 |
---|---|---|
committer | Stefan Berger <stefanb@linux.ibm.com> | 2018-10-30 13:53:15 -0400 |
commit | e2f246a50b6d15a3b87a5371a868d21cffe48ba0 (patch) | |
tree | fc38e9a4187bb69c5dd796ef8f851538d8c69c8a /tests/tpm-util.h | |
parent | c1d99200dd3d7f73ebe13b32f12944d3e48a2cb9 (diff) |
tests/tpm: Display if swtpm is not found or --tpm2 not supported
If swtpm is not found in $PATH or --tpm2 isn't supported, we display
this in the test log. We cannot mark the test as skipped due to a bug in
certain versions of the gtester environment that interprets a skipped test
as failure.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Diffstat (limited to 'tests/tpm-util.h')
-rw-r--r-- | tests/tpm-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tpm-util.h b/tests/tpm-util.h index 330b9657fe..9e98bc5124 100644 --- a/tests/tpm-util.h +++ b/tests/tpm-util.h @@ -32,6 +32,8 @@ void tpm_util_pcrextend(QTestState *s, tx_func *tx); void tpm_util_pcrread(QTestState *s, tx_func *tx, const unsigned char *exp_resp, size_t exp_resp_size); +bool tpm_util_swtpm_has_tpm2(void); + gboolean tpm_util_swtpm_start(const char *path, GPid *pid, SocketAddress **addr, GError **error); void tpm_util_swtpm_kill(GPid pid); |