ui: introduce enum to track VNC client framebuffer update request state
[qemu/ar7.git] / tests / virtio-serial-test.c
blob7cc7060264593a4cf47d55d099d51821ad736991
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"
12 #include "libqos/virtio.h"
14 /* Tests only initialization so far. TODO: Replace with functional tests */
15 static void virtio_serial_nop(void)
19 static void hotplug(void)
21 qtest_qmp_device_add("virtserialport", "hp-port", NULL);
23 qtest_qmp_device_del("hp-port");
26 int main(int argc, char **argv)
28 int ret;
30 g_test_init(&argc, &argv, NULL);
31 qtest_add_func("/virtio/serial/nop", virtio_serial_nop);
32 qtest_add_func("/virtio/serial/hotplug", hotplug);
34 global_qtest = qtest_startf("-device virtio-serial-%s",
35 qvirtio_get_dev_type());
36 ret = g_test_run();
38 qtest_end();
40 return ret;