]>
git.proxmox.com Git - qemu.git/blob - tests/qdev-monitor-test.c
2 * qdev-monitor.c test cases
4 * Copyright (C) 2013 Red Hat Inc.
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
16 #include "qapi/qmp/qjson.h"
18 static void test_device_add(void)
23 qtest_start("-drive if=none,id=drive0");
25 /* Make device_add fail. If this leaks the virtio-blk-pci device then a
26 * reference to drive0 will also be held (via qdev properties).
28 response
= qmp("{\"execute\": \"device_add\","
30 " \"driver\": \"virtio-blk-pci\","
31 " \"drive\": \"drive0\""
34 error
= qdict_get_qdict(response
, "error");
35 g_assert(!strcmp(qdict_get_try_str(error
, "class") ?: "",
37 g_assert(!strcmp(qdict_get_try_str(error
, "desc") ?: "",
38 "Device initialization failed."));
41 /* Delete the drive */
42 response
= qmp("{\"execute\": \"human-monitor-command\","
44 " \"command-line\": \"drive_del drive0\""
47 g_assert(!strcmp(qdict_get_try_str(response
, "return") ?: "(null)", ""));
50 /* Try to re-add the drive. This fails with duplicate IDs if a leaked
51 * virtio-blk-pci exists that holds a reference to the old drive0.
53 response
= qmp("{\"execute\": \"human-monitor-command\","
55 " \"command-line\": \"drive_add pci-addr=auto if=none,id=drive0\""
58 g_assert(!strcmp(qdict_get_try_str(response
, "return") ?: "",
65 int main(int argc
, char **argv
)
67 const char *arch
= qtest_get_arch();
69 /* Check architecture */
70 if (strcmp(arch
, "i386") && strcmp(arch
, "x86_64")) {
71 g_test_message("Skipping test for non-x86\n");
76 g_test_init(&argc
, &argv
, NULL
);
78 qtest_add_func("/qmp/device_add", test_device_add
);