]> git.proxmox.com Git - mirror_qemu.git/blob - tests/virtio-serial-test.c
tests: Clean up string interpolation around qtest_qmp_device_add()
[mirror_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 #include "libqos/virtio.h"
13
14 /* Tests only initialization so far. TODO: Replace with functional tests */
15 static void virtio_serial_nop(void)
16 {
17 }
18
19 static void hotplug(void)
20 {
21 qtest_qmp_device_add("virtserialport", "hp-port", "{}");
22
23 qtest_qmp_device_del("hp-port");
24 }
25
26 int main(int argc, char **argv)
27 {
28 int ret;
29
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);
33
34 global_qtest = qtest_startf("-device virtio-serial-%s",
35 qvirtio_get_dev_type());
36 ret = g_test_run();
37
38 qtest_end();
39
40 return ret;
41 }