2 * QTest testcase for vga cards
4 * Copyright (c) 2014 Red Hat, Inc
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
15 static void pci_cirrus(void)
17 qtest_start("-vga none -device cirrus-vga");
21 static void pci_stdvga(void)
23 qtest_start("-vga none -device VGA");
27 int main(int argc, char **argv)
31 g_test_init(&argc, &argv, NULL);
33 qtest_add_func("/display/pci/cirrus", pci_cirrus);
34 qtest_add_func("/display/pci/stdvga", pci_stdvga);