2013-07-29 05:44:47 +02:00
|
|
|
/*
|
|
|
|
* QTest testcase for QOM
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013 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 "libqtest.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "qemu/osdep.h"
|
2014-01-10 14:31:38 +01:00
|
|
|
#include "qapi/qmp/types.h"
|
|
|
|
|
|
|
|
static const char *blacklist_x86[] = {
|
|
|
|
"xenfv", "xenpv", NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
const char *arch;
|
|
|
|
const char **machine;
|
|
|
|
} blacklists[] = {
|
|
|
|
{ "i386", blacklist_x86 },
|
|
|
|
{ "x86_64", blacklist_x86 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool is_blacklisted(const char *arch, const char *mach)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const char **p;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(blacklists); i++) {
|
|
|
|
if (!strcmp(blacklists[i].arch, arch)) {
|
|
|
|
for (p = blacklists[i].machine; *p; p++) {
|
|
|
|
if (!strcmp(*p, mach)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-29 05:44:47 +02:00
|
|
|
|
|
|
|
static void test_nop(gconstpointer data)
|
|
|
|
{
|
|
|
|
QTestState *s;
|
|
|
|
const char *machine = data;
|
|
|
|
char *args;
|
|
|
|
|
2013-11-18 17:36:34 +01:00
|
|
|
args = g_strdup_printf("-machine %s", machine);
|
2013-07-29 05:44:47 +02:00
|
|
|
s = qtest_start(args);
|
|
|
|
if (s) {
|
|
|
|
qtest_quit(s);
|
|
|
|
}
|
|
|
|
g_free(args);
|
|
|
|
}
|
|
|
|
|
2014-01-10 14:31:38 +01:00
|
|
|
static void add_machine_test_cases(void)
|
2013-07-29 05:44:47 +02:00
|
|
|
{
|
2014-01-10 14:31:38 +01:00
|
|
|
const char *arch = qtest_get_arch();
|
|
|
|
QDict *response, *minfo;
|
|
|
|
QList *list;
|
|
|
|
const QListEntry *p;
|
|
|
|
QObject *qobj;
|
|
|
|
QString *qstr;
|
|
|
|
const char *mname, *path;
|
|
|
|
|
|
|
|
qtest_start("-machine none");
|
|
|
|
response = qmp("{ 'execute': 'query-machines' }");
|
|
|
|
g_assert(response);
|
|
|
|
list = qdict_get_qlist(response, "return");
|
|
|
|
g_assert(list);
|
|
|
|
|
|
|
|
for (p = qlist_first(list); p; p = qlist_next(p)) {
|
|
|
|
minfo = qobject_to_qdict(qlist_entry_obj(p));
|
|
|
|
g_assert(minfo);
|
|
|
|
qobj = qdict_get(minfo, "name");
|
|
|
|
g_assert(qobj);
|
|
|
|
qstr = qobject_to_qstring(qobj);
|
|
|
|
g_assert(qstr);
|
|
|
|
mname = qstring_get_str(qstr);
|
|
|
|
if (!is_blacklisted(arch, mname)) {
|
|
|
|
path = g_strdup_printf("/%s/qom/%s", arch, mname);
|
|
|
|
g_test_add_data_func(path, mname, test_nop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
qtest_end();
|
2013-07-29 05:44:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
|
2014-01-10 14:31:38 +01:00
|
|
|
add_machine_test_cases();
|
2013-07-29 05:44:47 +02:00
|
|
|
|
|
|
|
return g_test_run();
|
|
|
|
}
|