mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 03:43:37 +08:00
tests/acpi: add microvm test
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Message-id: 20200915120909.20838-20-kraxel@redhat.com
This commit is contained in:
parent
3cac3784f7
commit
c06cbf3d79
@ -1044,6 +1044,20 @@ static void test_acpi_virt_tcg_memhp(void)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_acpi_microvm_tcg(void)
|
||||||
|
{
|
||||||
|
test_data data;
|
||||||
|
|
||||||
|
memset(&data, 0, sizeof(data));
|
||||||
|
data.machine = "microvm";
|
||||||
|
data.required_struct_types = NULL; /* no smbios */
|
||||||
|
data.required_struct_types_len = 0;
|
||||||
|
data.blkdev = "virtio-blk-device";
|
||||||
|
test_acpi_one(" -machine microvm,acpi=on,rtc=off",
|
||||||
|
&data);
|
||||||
|
free_test_data(&data);
|
||||||
|
}
|
||||||
|
|
||||||
static void test_acpi_virt_tcg_numamem(void)
|
static void test_acpi_virt_tcg_numamem(void)
|
||||||
{
|
{
|
||||||
test_data data = {
|
test_data data = {
|
||||||
@ -1161,6 +1175,7 @@ int main(int argc, char *argv[])
|
|||||||
qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm);
|
qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm);
|
||||||
qtest_add_func("acpi/piix4/acpihmat", test_acpi_piix4_tcg_acpi_hmat);
|
qtest_add_func("acpi/piix4/acpihmat", test_acpi_piix4_tcg_acpi_hmat);
|
||||||
qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat);
|
qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat);
|
||||||
|
qtest_add_func("acpi/microvm", test_acpi_microvm_tcg);
|
||||||
} else if (strcmp(arch, "aarch64") == 0) {
|
} else if (strcmp(arch, "aarch64") == 0) {
|
||||||
qtest_add_func("acpi/virt", test_acpi_virt_tcg);
|
qtest_add_func("acpi/virt", test_acpi_virt_tcg);
|
||||||
qtest_add_func("acpi/virt/numamem", test_acpi_virt_tcg_numamem);
|
qtest_add_func("acpi/virt/numamem", test_acpi_virt_tcg_numamem);
|
||||||
|
Loading…
Reference in New Issue
Block a user