4 * Copyright (c) 2017 Red Hat Inc.
7 * Thomas Huth <thuth@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2
10 * or later. See the COPYING file in the top-level directory.
12 * This test calls some HMP commands for all machines that the current
13 * QEMU binary provides, to check whether they terminate successfully
14 * (i.e. do not crash QEMU).
17 #include "qemu/osdep.h"
22 static const char *hmp_cmds
[] = {
25 "chardev-add null,id=testchardev1",
26 "chardev-send-break testchardev1",
27 "chardev-change testchardev1 ringbuf",
28 "chardev-remove testchardev1",
32 "device_add usb-mouse,id=mouse1",
33 "drive_add ignored format=help",
38 "dump-guest-memory /dev/null 0 4096",
39 "dump-guest-memory /dev/null",
42 "hostfwd_add tcp::43210-:43210",
43 "hostfwd_remove tcp::43210-:43210",
47 "memsave 0 4096 \"/dev/null\"",
48 "migrate_set_parameter xbzrle-cache-size 64k",
49 "migrate_set_parameter downtime-limit 1",
50 "migrate_set_parameter max-bandwidth 1",
51 "netdev_add user,id=net1",
57 "object_add memory-backend-ram,id=mem1,size=256M",
60 "pmemsave 0 4096 \"/dev/null\"",
63 "qom-set /machine initrd test",
64 "qom-get /machine initrd",
65 "screendump /dev/null",
67 "wavcapture /dev/null",
75 /* Run through the list of pre-defined commands */
76 static void test_commands(QTestState
*qts
)
81 for (i
= 0; hmp_cmds
[i
] != NULL
; i
++) {
82 response
= qtest_hmp(qts
, "%s", hmp_cmds
[i
]);
85 "\texecute HMP command: %s\n"
87 hmp_cmds
[i
], response
);
94 /* Run through all info commands and call them blindly (without arguments) */
95 static void test_info_commands(QTestState
*qts
)
97 char *resp
, *info
, *info_buf
, *endp
;
99 info_buf
= info
= qtest_hmp(qts
, "help info");
102 /* Extract the info command, ignore parameters and description */
103 g_assert(strncmp(info
, "info ", 5) == 0);
104 endp
= strchr(&info
[5], ' ');
105 g_assert(endp
!= NULL
);
107 /* Now run the info command */
109 fprintf(stderr
, "\t%s\n", info
);
111 resp
= qtest_hmp(qts
, "%s", info
);
113 /* And move forward to the next line */
114 info
= strchr(endp
+ 1, '\n');
124 static void test_machine(gconstpointer data
)
126 const char *machine
= data
;
130 args
= g_strdup_printf("-S -M %s", machine
);
131 qts
= qtest_init(args
);
133 test_info_commands(qts
);
138 g_free((void *)data
);
141 static void add_machine_test_case(const char *mname
)
145 path
= g_strdup_printf("hmp/%s", mname
);
146 qtest_add_data_func(path
, g_strdup(mname
), test_machine
);
150 int main(int argc
, char **argv
)
152 char *v_env
= getenv("V");
154 if (v_env
&& atoi(v_env
) >= 2) {
158 g_test_init(&argc
, &argv
, NULL
);
160 qtest_cb_for_every_machine(add_machine_test_case
, g_test_quick());
162 /* as none machine has no memory by default, add a test case with memory */
163 qtest_add_data_func("hmp/none+2MB", g_strdup("none -m 2"), test_machine
);