Commit d39b6263 authored by Marc-André Lureau's avatar Marc-André Lureau Committed by Peter Maydell
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 avatarPeter Maydell <peter.maydell@linaro.org>
parent f54d432e
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);
}