Commit 6954a04d authored by Marc-André Lureau's avatar Marc-André Lureau Committed by Alex Bennée
Browse files

tests: fix modules-test with no default machine



Fixes: eb062cfa ("tests: add module loading test")
Signed-off-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: default avatarThomas Huth <thuth@redhat.com>
Message-Id: <20190827140241.20818-2-marcandre.lureau@redhat.com>
Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
parent 5d3cbddb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
#include "qemu/osdep.h"
#include "libqtest.h"

const char common_args[] = "-nodefaults -machine none";

static void test_modules_load(const void *data)
{
    QTestState *qts;
    const char **args = (const char **)data;

    qts = qtest_init(NULL);
    qts = qtest_init(common_args);
    qtest_module_load(qts, args[0], args[1]);
    qtest_quit(qts);
}