pvpanic-test.c 1.1 KB
Newer Older
A
Andreas Färber 已提交
1 2 3 4 5 6 7 8 9
/*
 * QTest testcase for PV Panic
 *
 * Copyright (c) 2014 SUSE LINUX Products GmbH
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

P
Peter Maydell 已提交
10
#include "qemu/osdep.h"
A
Andreas Färber 已提交
11
#include "libqtest.h"
12
#include "qapi/qmp/qdict.h"
A
Andreas Färber 已提交
13 14 15 16

static void test_panic(void)
{
    uint8_t val;
17
    QDict *response, *data;
18
    QTestState *qts;
A
Andreas Färber 已提交
19

20 21 22
    qts = qtest_init("-device pvpanic");

    val = qtest_inb(qts, 0x505);
A
Andreas Färber 已提交
23 24
    g_assert_cmpuint(val, ==, 1);

25
    qtest_outb(qts, 0x505, 0x1);
26

27
    response = qtest_qmp_receive(qts);
28 29 30 31 32 33
    g_assert(qdict_haskey(response, "event"));
    g_assert_cmpstr(qdict_get_str(response, "event"), ==, "GUEST_PANICKED");
    g_assert(qdict_haskey(response, "data"));
    data = qdict_get_qdict(response, "data");
    g_assert(qdict_haskey(data, "action"));
    g_assert_cmpstr(qdict_get_str(data, "action"), ==, "pause");
34
    qobject_unref(response);
35 36

    qtest_quit(qts);
A
Andreas Färber 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
}

int main(int argc, char **argv)
{
    int ret;

    g_test_init(&argc, &argv, NULL);
    qtest_add_func("/pvpanic/panic", test_panic);

    ret = g_test_run();

    return ret;
}