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.
10 #include "qemu/osdep.h"
13 /* Tests only initialization so far. TODO: Replace with functional tests */
14 static void pci_nop(void)
18 static void hotplug(void)
22 response
= qmp("{\"execute\": \"device_add\","
24 " \"driver\": \"virtserialport\","
25 " \"id\": \"hp-port\""
29 g_assert(!qdict_haskey(response
, "error"));
32 response
= qmp("{\"execute\": \"device_del\","
34 " \"id\": \"hp-port\""
38 g_assert(!qdict_haskey(response
, "error"));
39 g_assert(qdict_haskey(response
, "event"));
40 g_assert(!strcmp(qdict_get_str(response
, "event"), "DEVICE_DELETED"));
44 int main(int argc
, char **argv
)
48 g_test_init(&argc
, &argv
, NULL
);
49 qtest_add_func("/virtio/serial/pci/nop", pci_nop
);
50 qtest_add_func("/virtio/serial/pci/hotplug", hotplug
);
52 qtest_start("-device virtio-serial-pci");