]> Git Repo - qemu.git/blob - tests/virtio-serial-test.c
Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging
[qemu.git] / tests / virtio-serial-test.c
1 /*
2  * QTest testcase for VirtIO Serial
3  *
4  * Copyright (c) 2014 SUSE LINUX Products GmbH
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 "qemu/osdep.h"
11 #include "libqtest.h"
12
13 /* Tests only initialization so far. TODO: Replace with functional tests */
14 static void pci_nop(void)
15 {
16 }
17
18 static void hotplug(void)
19 {
20     qtest_qmp_device_add("virtserialport", "hp-port", NULL);
21
22     qtest_qmp_device_del("hp-port");
23 }
24
25 int main(int argc, char **argv)
26 {
27     int ret;
28
29     g_test_init(&argc, &argv, NULL);
30     qtest_add_func("/virtio/serial/pci/nop", pci_nop);
31     qtest_add_func("/virtio/serial/pci/hotplug", hotplug);
32
33     qtest_start("-device virtio-serial-pci");
34     ret = g_test_run();
35
36     qtest_end();
37
38     return ret;
39 }
This page took 0.026377 seconds and 4 git commands to generate.