The TPM2 tests that genreate an RSA primary key are fast on vtpms, but
very slow on physical TPMs, simply because TPMs aren't precisely fast
devices. It makes sense to keep the tests around however. Hence hide the
test behind the "slow test" logic by default – but only if we run on
physical hw, and keep them in place on VMs (where we'd expect a vtpm, if
any).
#include "hexdecoct.h"
#include "macro.h"
-#include "tpm2-util.h"
#include "tests.h"
+#include "tpm2-util.h"
+#include "virt.h"
TEST(tpm2_pcr_index_from_string) {
assert_se(tpm2_pcr_index_from_string("platform-code") == 0);
assert(c);
int r;
+ if (detect_virtualization() == VIRTUALIZATION_NONE && !slow_tests_enabled()) {
+ log_notice("Skipping slow calculate seal TPM2 tests. Physical system detected, and slow tests disabled.");
+ return 0;
+ }
+
TEST_LOG_FUNC();
_cleanup_free_ TPM2B_PUBLIC *srk_public = NULL;
assert(c);
+ if (detect_virtualization() == VIRTUALIZATION_NONE && !slow_tests_enabled()) {
+ log_notice("Skipping slow seal/unseal TPM2 tests. Physical system detected, and slow tests disabled.");
+ return;
+ }
+
TEST_LOG_FUNC();
check_seal_unseal_for_handle(c, 0);