diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-04-28 11:02:58 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-04-28 11:03:39 +0200 |
commit | a889bc2bb2a4eef105652be25eacfed74c9f1273 (patch) | |
tree | fa0dadc206fa16b96460350053469d2c14b708c0 /tests | |
parent | 0850fd583f29c4ce35f83c511a2d9fd737909b53 (diff) | |
download | qemu-a889bc2bb2a4eef105652be25eacfed74c9f1273.tar.gz qemu-a889bc2bb2a4eef105652be25eacfed74c9f1273.tar.bz2 qemu-a889bc2bb2a4eef105652be25eacfed74c9f1273.zip |
add secondary-vga to display-vga test
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/display-vga-test.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/display-vga-test.c b/tests/display-vga-test.c index 23be88faab..17f59101e8 100644 --- a/tests/display-vga-test.c +++ b/tests/display-vga-test.c @@ -24,6 +24,18 @@ static void pci_stdvga(void) qtest_end(); } +static void pci_secondary(void) +{ + qtest_start("-vga none -device secondary-vga"); + qtest_end(); +} + +static void pci_multihead(void) +{ + qtest_start("-vga none -device VGA -device secondary-vga"); + qtest_end(); +} + int main(int argc, char **argv) { int ret; @@ -32,6 +44,8 @@ int main(int argc, char **argv) qtest_add_func("/display/pci/cirrus", pci_cirrus); qtest_add_func("/display/pci/stdvga", pci_stdvga); + qtest_add_func("/display/pci/secondary", pci_secondary); + qtest_add_func("/display/pci/multihead", pci_multihead); ret = g_test_run(); return ret; |