s390x/css: introduce css data stream
[qemu/ar7.git] / tests / virtio-serial-test.c
blob7d1517dee34e99bb0135f45e02aa8f4bdc29a07b
1 /*
2 * QTest testcase for VirtIO Serial
4 * Copyright (c) 2014 SUSE LINUX Products GmbH
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 */
10 #include "qemu/osdep.h"
11 #include "libqtest.h"
13 /* Tests only initialization so far. TODO: Replace with functional tests */
14 static void pci_nop(void)
18 static void hotplug(void)
20 qtest_qmp_device_add("virtserialport", "hp-port", NULL);
22 qtest_qmp_device_del("hp-port");
25 int main(int argc, char **argv)
27 int ret;
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);
33 qtest_start("-device virtio-serial-pci");
34 ret = g_test_run();
36 qtest_end();
38 return ret;