Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210330' into...
[qemu/ar7.git] / tests / qtest / pvpanic-test.c
blob6dcad2db4984c4f0371349275a547d5577325dc0
1 /*
2 * QTest testcase for PV Panic
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.
8 */
10 #include "qemu/osdep.h"
11 #include "libqos/libqtest.h"
12 #include "qapi/qmp/qdict.h"
14 static void test_panic_nopause(void)
16 uint8_t val;
17 QDict *response, *data;
18 QTestState *qts;
20 qts = qtest_init("-device pvpanic -action panic=none");
22 val = qtest_inb(qts, 0x505);
23 g_assert_cmpuint(val, ==, 3);
25 qtest_outb(qts, 0x505, 0x1);
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"), ==, "run");
32 qobject_unref(response);
34 qtest_quit(qts);
37 static void test_panic(void)
39 uint8_t val;
40 QDict *response, *data;
41 QTestState *qts;
43 qts = qtest_init("-device pvpanic -action panic=pause");
45 val = qtest_inb(qts, 0x505);
46 g_assert_cmpuint(val, ==, 3);
48 qtest_outb(qts, 0x505, 0x1);
50 response = qtest_qmp_eventwait_ref(qts, "GUEST_PANICKED");
51 g_assert(qdict_haskey(response, "data"));
52 data = qdict_get_qdict(response, "data");
53 g_assert(qdict_haskey(data, "action"));
54 g_assert_cmpstr(qdict_get_str(data, "action"), ==, "pause");
55 qobject_unref(response);
57 qtest_quit(qts);
60 int main(int argc, char **argv)
62 int ret;
64 g_test_init(&argc, &argv, NULL);
65 qtest_add_func("/pvpanic/panic", test_panic);
66 qtest_add_func("/pvpanic/panic-nopause", test_panic_nopause);
68 ret = g_test_run();
70 return ret;