2012-04-02 16:25:30 +00:00
|
|
|
/*
|
2014-03-17 09:38:38 +00:00
|
|
|
* Copyright (C) 2012, 2014 Red Hat, Inc.
|
2012-04-02 16:25:30 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2012-04-02 16:25:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "testutils.h"
|
2012-12-13 18:21:53 +00:00
|
|
|
#include "virerror.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-12-12 17:59:27 +00:00
|
|
|
#include "virlog.h"
|
2012-04-02 16:25:30 +00:00
|
|
|
#include "driver.h"
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2014-02-28 12:16:17 +00:00
|
|
|
VIR_LOG_INIT("tests.drivermoduletest");
|
|
|
|
|
2017-01-26 13:57:41 +00:00
|
|
|
struct testDriverModuleData {
|
|
|
|
const char *module;
|
|
|
|
const char *regfunc;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-02 16:25:30 +00:00
|
|
|
static int testDriverModule(const void *args)
|
|
|
|
{
|
2017-01-26 13:57:41 +00:00
|
|
|
const struct testDriverModuleData *data = args;
|
2012-04-02 16:25:30 +00:00
|
|
|
|
2013-01-14 15:35:08 +00:00
|
|
|
/* coverity[leaked_storage] */
|
2018-04-19 15:50:56 +00:00
|
|
|
if (virDriverLoadModule(data->module, data->regfunc, true) != 0)
|
2012-04-02 16:25:30 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
mymain(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2017-01-26 13:57:41 +00:00
|
|
|
struct testDriverModuleData data;
|
2012-04-02 16:25:30 +00:00
|
|
|
|
2017-11-03 12:09:47 +00:00
|
|
|
#define TEST_FULL(name, fnc) \
|
|
|
|
do { \
|
|
|
|
data.module = name; \
|
|
|
|
data.regfunc = fnc; \
|
|
|
|
if (virTestRun("Test driver " # name, testDriverModule, &data) < 0) \
|
|
|
|
ret = -1; \
|
2012-04-02 16:25:30 +00:00
|
|
|
} while (0)
|
|
|
|
|
2017-01-26 13:57:41 +00:00
|
|
|
#define TEST(name) TEST_FULL(name, name "Register")
|
|
|
|
|
2012-04-02 16:25:30 +00:00
|
|
|
#ifdef WITH_NETWORK
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("network");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
2014-08-22 09:37:50 +00:00
|
|
|
#ifdef WITH_INTERFACE
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("interface");
|
2014-08-22 09:37:50 +00:00
|
|
|
#endif
|
2012-04-02 16:25:30 +00:00
|
|
|
#ifdef WITH_STORAGE
|
2017-02-07 17:58:39 +00:00
|
|
|
TEST_FULL("storage", "storageRegisterAll");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_NODE_DEVICES
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("nodedev");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_SECRETS
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("secret");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_NWFILTER
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("nwfilter");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
2014-08-22 09:37:50 +00:00
|
|
|
#ifdef WITH_LIBXL
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("libxl");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_QEMU
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("qemu");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_LXC
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("lxc");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
2014-08-22 09:37:50 +00:00
|
|
|
#ifdef WITH_VBOX
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("vbox");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
2014-08-22 09:37:50 +00:00
|
|
|
#ifdef WITH_BHYVE
|
2017-01-18 12:19:59 +00:00
|
|
|
TEST("bhyve");
|
2012-04-02 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
|
2014-03-17 09:38:38 +00:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2012-04-02 16:25:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 14:45:42 +00:00
|
|
|
VIR_TEST_MAIN(mymain)
|