From 1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Mon, 9 Sep 2019 12:04:01 +0200 Subject: test: Move qtests to a separate directory The tests directory itself is pretty overcrowded, and it's hard to see which test belongs to which test subsystem (unit, qtest, ...). Let's move the qtests to a separate folder for more clarity. Message-Id: <20191218103059.11729-6-thuth@redhat.com> Reviewed-by: Paolo Bonzini Signed-off-by: Thomas Huth --- tests/pvpanic-test.c | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 tests/pvpanic-test.c (limited to 'tests/pvpanic-test.c') diff --git a/tests/pvpanic-test.c b/tests/pvpanic-test.c deleted file mode 100644 index ff9176adf3..0000000000 --- a/tests/pvpanic-test.c +++ /dev/null @@ -1,49 +0,0 @@ -/* - * 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. - */ - -#include "qemu/osdep.h" -#include "libqtest.h" -#include "qapi/qmp/qdict.h" - -static void test_panic(void) -{ - uint8_t val; - QDict *response, *data; - QTestState *qts; - - qts = qtest_init("-device pvpanic"); - - val = qtest_inb(qts, 0x505); - g_assert_cmpuint(val, ==, 1); - - qtest_outb(qts, 0x505, 0x1); - - response = qtest_qmp_receive(qts); - 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"); - qobject_unref(response); - - qtest_quit(qts); -} - -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; -} -- cgit v1.2.3