diff options
| author | Igor Mammedov | 2021-09-02 13:35:43 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2021-10-20 10:37:55 +0200 |
| commit | 0ff92b6d99011c8de57321503c0eb655c461a217 (patch) | |
| tree | 574f53feea559acf86968c51bb63c099c7e2b5e1 /tests | |
| parent | tests: acpi: whitelist new expected table tests/data/acpi/q35/DMAR.dmar (diff) | |
| download | qemu-0ff92b6d99011c8de57321503c0eb655c461a217.tar.gz qemu-0ff92b6d99011c8de57321503c0eb655c461a217.tar.xz qemu-0ff92b6d99011c8de57321503c0eb655c461a217.zip | |
tests: acpi: add testcase for intel_iommu (DMAR table)
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Message-Id: <20210902113551.461632-8-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/qtest/bios-tables-test.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c index 87a94a59fa..0361c84c5e 100644 --- a/tests/qtest/bios-tables-test.c +++ b/tests/qtest/bios-tables-test.c @@ -1090,6 +1090,18 @@ static void test_acpi_q35_tcg_nohpet(void) free_test_data(&data); } +static void test_acpi_q35_kvm_dmar(void) +{ + test_data data; + + memset(&data, 0, sizeof(data)); + data.machine = MACHINE_Q35; + data.variant = ".dmar"; + test_acpi_one("-machine kernel-irqchip=split -accel kvm" + " -device intel-iommu,intremap=on,device-iotlb=on", &data); + free_test_data(&data); +} + static void test_acpi_piix4_tcg_numamem(void) { test_data data; @@ -1583,6 +1595,7 @@ int main(int argc, char *argv[]) } if (has_kvm) { qtest_add_func("acpi/q35/kvm/xapic", test_acpi_q35_kvm_xapic); + qtest_add_func("acpi/q35/kvm/dmar", test_acpi_q35_kvm_dmar); } } else if (strcmp(arch, "aarch64") == 0) { qtest_add_func("acpi/virt", test_acpi_virt_tcg); |
