xref: /qemu/tests/qtest/pvpanic-test.c (revision 92eecfff)
1 /*
2  * QTest testcase for PV Panic
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 "libqos/libqtest.h"
12 #include "qapi/qmp/qdict.h"
13 
14 static void test_panic(void)
15 {
16     uint8_t val;
17     QDict *response, *data;
18     QTestState *qts;
19 
20     qts = qtest_init("-device pvpanic");
21 
22     val = qtest_inb(qts, 0x505);
23     g_assert_cmpuint(val, ==, 1);
24 
25     qtest_outb(qts, 0x505, 0x1);
26 
27     response = qtest_qmp_eventwait_ref(qts, "GUEST_PANICKED");
28     g_assert(qdict_haskey(response, "data"));
29     data = qdict_get_qdict(response, "data");
30     g_assert(qdict_haskey(data, "action"));
31     g_assert_cmpstr(qdict_get_str(data, "action"), ==, "pause");
32     qobject_unref(response);
33 
34     qtest_quit(qts);
35 }
36 
37 int main(int argc, char **argv)
38 {
39     int ret;
40 
41     g_test_init(&argc, &argv, NULL);
42     qtest_add_func("/pvpanic/panic", test_panic);
43 
44     ret = g_test_run();
45 
46     return ret;
47 }
48