diff --git a/tests/qemuxml2argvdata/tpm-emulator-tpm2.x86_64-latest.err b/tests/qemuxml2argvdata/tpm-emulator-tpm2.x86_64-latest.err new file mode 100644 index 0000000000..8c16024791 --- /dev/null +++ b/tests/qemuxml2argvdata/tpm-emulator-tpm2.x86_64-latest.err @@ -0,0 +1 @@ +unsupported configuration: TPM version '2.0' is not supported diff --git a/tests/qemuxml2argvdata/tpm-emulator.x86_64-latest.err b/tests/qemuxml2argvdata/tpm-emulator.x86_64-latest.err new file mode 100644 index 0000000000..172343d267 --- /dev/null +++ b/tests/qemuxml2argvdata/tpm-emulator.x86_64-latest.err @@ -0,0 +1 @@ +unsupported configuration: TPM version '1.2' is not supported diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c index 05537d9e96..bebe4f08a3 100644 --- a/tests/qemuxml2argvtest.c +++ b/tests/qemuxml2argvtest.c @@ -2564,6 +2564,12 @@ mymain(void) DO_TEST_CAPS_ARCH_LATEST("aarch64-tpm", "aarch64"); DO_TEST_PARSE_ERROR_NOCAPS("aarch64-tpm-wrong-model"); + g_setenv(TEST_TPM_ENV_VAR, TPM_VER_2_0, true); + DO_TEST_CAPS_LATEST_PARSE_ERROR("tpm-emulator"); + g_setenv(TEST_TPM_ENV_VAR, TPM_VER_1_2, true); + DO_TEST_CAPS_LATEST_PARSE_ERROR("tpm-emulator-tpm2"); + unsetenv(TEST_TPM_ENV_VAR); + DO_TEST_PARSE_ERROR_NOCAPS("pci-domain-invalid"); DO_TEST_PARSE_ERROR_NOCAPS("pci-bus-invalid"); DO_TEST_PARSE_ERROR_NOCAPS("pci-slot-invalid");