diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-10-20 09:48:43 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-10-21 11:36:19 +0200 |
commit | 0c491c84858f53c57583943909bbd40f28534a82 (patch) | |
tree | 2ee1b25888c3415c21c1f3653d755c38ca8d4f90 /tests | |
parent | f072fd2f85f08759c9168a70e59926179af5447d (diff) | |
download | qemu-0c491c84858f53c57583943909bbd40f28534a82.zip qemu-0c491c84858f53c57583943909bbd40f28534a82.tar.gz qemu-0c491c84858f53c57583943909bbd40f28534a82.tar.bz2 |
tests/acpi: add microvm rtc test
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20201020074844.5304-10-kraxel@redhat.com
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/bios-tables-test.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c index 17e1180..3830a40 100644 --- a/tests/qtest/bios-tables-test.c +++ b/tests/qtest/bios-tables-test.c @@ -1121,6 +1121,17 @@ static void test_acpi_microvm_usb_tcg(void) free_test_data(&data); } +static void test_acpi_microvm_rtc_tcg(void) +{ + test_data data; + + test_acpi_microvm_prepare(&data); + data.variant = ".rtc"; + test_acpi_one(" -machine microvm,acpi=on,rtc=on", + &data); + free_test_data(&data); +} + static void test_acpi_microvm_pcie_tcg(void) { test_data data; @@ -1258,6 +1269,7 @@ int main(int argc, char *argv[]) qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat); qtest_add_func("acpi/microvm", test_acpi_microvm_tcg); qtest_add_func("acpi/microvm/usb", test_acpi_microvm_usb_tcg); + qtest_add_func("acpi/microvm/rtc", test_acpi_microvm_rtc_tcg); if (strcmp(arch, "x86_64") == 0) { qtest_add_func("acpi/microvm/pcie", test_acpi_microvm_pcie_tcg); } |