]>
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 | ||
681c28a3 | 10 | #include "qemu/osdep.h" |
0850fd58 | 11 | #include "libqtest.h" |
0850fd58 GH |
12 | |
13 | static void pci_cirrus(void) | |
14 | { | |
15 | qtest_start("-vga none -device cirrus-vga"); | |
16 | qtest_end(); | |
17 | } | |
18 | ||
19 | static void pci_stdvga(void) | |
20 | { | |
21 | qtest_start("-vga none -device VGA"); | |
22 | qtest_end(); | |
23 | } | |
24 | ||
a889bc2b GH |
25 | static void pci_secondary(void) |
26 | { | |
27 | qtest_start("-vga none -device secondary-vga"); | |
28 | qtest_end(); | |
29 | } | |
30 | ||
31 | static void pci_multihead(void) | |
32 | { | |
33 | qtest_start("-vga none -device VGA -device secondary-vga"); | |
34 | qtest_end(); | |
35 | } | |
36 | ||
501eea4f GH |
37 | static void pci_virtio_gpu(void) |
38 | { | |
39 | qtest_start("-vga none -device virtio-gpu-pci"); | |
40 | qtest_end(); | |
41 | } | |
42 | ||
43 | #ifdef CONFIG_VIRTIO_VGA | |
44 | static void pci_virtio_vga(void) | |
45 | { | |
46 | qtest_start("-vga none -device virtio-vga"); | |
47 | qtest_end(); | |
48 | } | |
49 | #endif | |
50 | ||
0850fd58 GH |
51 | int main(int argc, char **argv) |
52 | { | |
f38a0b2f LV |
53 | const char *arch = qtest_get_arch(); |
54 | ||
0850fd58 GH |
55 | g_test_init(&argc, &argv, NULL); |
56 | ||
f38a0b2f LV |
57 | if (strcmp(arch, "alpha") == 0 || strcmp(arch, "i386") == 0 || |
58 | strcmp(arch, "mips") == 0 || strcmp(arch, "x86_64") == 0) { | |
59 | qtest_add_func("/display/pci/cirrus", pci_cirrus); | |
60 | } | |
0850fd58 | 61 | qtest_add_func("/display/pci/stdvga", pci_stdvga); |
a889bc2b GH |
62 | qtest_add_func("/display/pci/secondary", pci_secondary); |
63 | qtest_add_func("/display/pci/multihead", pci_multihead); | |
501eea4f GH |
64 | qtest_add_func("/display/pci/virtio-gpu", pci_virtio_gpu); |
65 | #ifdef CONFIG_VIRTIO_VGA | |
66 | qtest_add_func("/display/pci/virtio-vga", pci_virtio_vga); | |
67 | #endif | |
9be38598 | 68 | return g_test_run(); |
0850fd58 | 69 | } |