diff options
author | Thomas Huth <thuth@redhat.com> | 2022-10-12 10:43:34 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-10-28 09:39:21 +0200 |
commit | daa8bb57dba5add4929dea6919858a2062101b26 (patch) | |
tree | a3ff707a26dca277177dea25550ab5b1fdeb309a /tests/qtest/tpm-util.h | |
parent | 9d711f19c5608910cdefdad24e23a2e695b312bb (diff) |
tests/qtest/tpm: Clean up remainders of swtpm
After running "make check", there are remainders of the tpm
tests left in the /tmp directory, slowly filling it up.
Seems like "swtpm" leaves a ".lock" and a "tpm2-00.permall"
file behind, so that the g_rmdir() calls on the temporary
directories fail. Introduce a helper function to remove those
leftovers before doing the g_rmdir().
Message-Id: <20221012084334.794253-1-thuth@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/tpm-util.h')
-rw-r--r-- | tests/qtest/tpm-util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qtest/tpm-util.h b/tests/qtest/tpm-util.h index 3b97d69017..80720afac0 100644 --- a/tests/qtest/tpm-util.h +++ b/tests/qtest/tpm-util.h @@ -53,5 +53,6 @@ void tpm_util_migration_start_qemu(QTestState **src_qemu, const char *machine_options); void tpm_util_wait_for_migration_complete(QTestState *who); +void tpm_util_rmdir(const char *path); #endif /* TESTS_TPM_UTIL_H */ |