]>
Commit | Line | Data |
---|---|---|
0850fd58 GH |
1 | /* |
2 | * QTest testcase for vga cards | |
3 | * | |
4 | * Copyright (c) 2014 Red Hat, Inc | |
5 | * | |
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. | |
8 | */ | |
9 | ||
10 | #include <glib.h> | |
11 | #include <string.h> | |
12 | #include "libqtest.h" | |
13 | #include "qemu/osdep.h" | |
14 | ||
15 | static void pci_cirrus(void) | |
16 | { | |
17 | qtest_start("-vga none -device cirrus-vga"); | |
18 | qtest_end(); | |
19 | } | |
20 | ||
21 | static void pci_stdvga(void) | |
22 | { | |
23 | qtest_start("-vga none -device VGA"); | |
24 | qtest_end(); | |
25 | } | |
26 | ||
a889bc2b GH |
27 | static void pci_secondary(void) |
28 | { | |
29 | qtest_start("-vga none -device secondary-vga"); | |
30 | qtest_end(); | |
31 | } | |
32 | ||
33 | static void pci_multihead(void) | |
34 | { | |
35 | qtest_start("-vga none -device VGA -device secondary-vga"); | |
36 | qtest_end(); | |
37 | } | |
38 | ||
0850fd58 GH |
39 | int main(int argc, char **argv) |
40 | { | |
41 | int ret; | |
42 | ||
43 | g_test_init(&argc, &argv, NULL); | |
44 | ||
45 | qtest_add_func("/display/pci/cirrus", pci_cirrus); | |
46 | qtest_add_func("/display/pci/stdvga", pci_stdvga); | |
a889bc2b GH |
47 | qtest_add_func("/display/pci/secondary", pci_secondary); |
48 | qtest_add_func("/display/pci/multihead", pci_multihead); | |
0850fd58 GH |
49 | ret = g_test_run(); |
50 | ||
51 | return ret; | |
52 | } |