cutils: add qemu_strtoi & qemu_strtoui parsers for int/unsigned int types
[qemu/ar7.git] / tests / pvpanic-test.c
blobebdf32c2e29d5a80f078e8b5e06d9a68d6b60151
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 "libqtest.h"
12 #include "qapi/qmp/qdict.h"
14 static void test_panic(void)
16 uint8_t val;
17 QDict *response, *data;
19 val = inb(0x505);
20 g_assert_cmpuint(val, ==, 1);
22 outb(0x505, 0x1);
24 response = qmp_receive();
25 g_assert(qdict_haskey(response, "event"));
26 g_assert_cmpstr(qdict_get_str(response, "event"), ==, "GUEST_PANICKED");
27 g_assert(qdict_haskey(response, "data"));
28 data = qdict_get_qdict(response, "data");
29 g_assert(qdict_haskey(data, "action"));
30 g_assert_cmpstr(qdict_get_str(data, "action"), ==, "pause");
31 QDECREF(response);
34 int main(int argc, char **argv)
36 int ret;
38 g_test_init(&argc, &argv, NULL);
39 qtest_add_func("/pvpanic/panic", test_panic);
41 qtest_start("-device pvpanic");
42 ret = g_test_run();
44 qtest_end();
46 return ret;