2014-06-05 11:53:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) Red Hat, Inc. 2014
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Michal Privoznik <mprivozn@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "testutils.h"
|
|
|
|
#include "capabilities.h"
|
|
|
|
#include "virbitmap.h"
|
2017-04-05 14:13:52 +00:00
|
|
|
#include "virfilewrapper.h"
|
2014-06-05 11:53:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2017-03-24 18:37:50 +00:00
|
|
|
struct virCapabilitiesData {
|
2014-06-05 11:53:16 +00:00
|
|
|
const char *filename;
|
2017-03-24 18:37:50 +00:00
|
|
|
virArch arch;
|
|
|
|
bool offlineMigrate;
|
|
|
|
bool liveMigrate;
|
2014-06-05 11:53:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2017-03-24 18:37:50 +00:00
|
|
|
test_virCapabilities(const void *opaque)
|
2014-06-05 11:53:16 +00:00
|
|
|
{
|
2017-03-24 18:37:50 +00:00
|
|
|
struct virCapabilitiesData *data = (struct virCapabilitiesData *) opaque;
|
|
|
|
const char *archStr = virArchToString(data->arch);
|
2014-06-05 11:53:16 +00:00
|
|
|
virCapsPtr caps = NULL;
|
|
|
|
char *capsXML = NULL;
|
|
|
|
char *path = NULL;
|
2018-08-02 16:31:03 +00:00
|
|
|
char *system = NULL;
|
2017-05-17 09:08:33 +00:00
|
|
|
char *resctrl = NULL;
|
2014-06-05 11:53:16 +00:00
|
|
|
int ret = -1;
|
|
|
|
|
2018-08-02 16:31:03 +00:00
|
|
|
if (virAsprintf(&system, "%s/vircaps2xmldata/linux-%s/system",
|
|
|
|
abs_srcdir, data->filename) < 0)
|
2017-03-24 18:37:50 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2017-05-17 09:08:33 +00:00
|
|
|
if (virAsprintf(&resctrl, "%s/vircaps2xmldata/linux-%s/resctrl",
|
|
|
|
abs_srcdir, data->filename) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2018-08-02 16:31:03 +00:00
|
|
|
virFileWrapperAddPrefix("/sys/devices/system", system);
|
2017-05-17 09:08:33 +00:00
|
|
|
virFileWrapperAddPrefix("/sys/fs/resctrl", resctrl);
|
2017-03-24 18:37:50 +00:00
|
|
|
caps = virCapabilitiesNew(data->arch, data->offlineMigrate, data->liveMigrate);
|
|
|
|
|
|
|
|
if (!caps)
|
|
|
|
goto cleanup;
|
|
|
|
|
2017-03-30 13:01:27 +00:00
|
|
|
if (virCapabilitiesInitNUMA(caps) < 0 ||
|
|
|
|
virCapabilitiesInitCaches(caps) < 0)
|
2014-06-05 11:53:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2017-04-05 14:13:52 +00:00
|
|
|
virFileWrapperClearPrefixes();
|
2017-03-24 18:37:50 +00:00
|
|
|
|
2014-06-27 07:55:44 +00:00
|
|
|
if (!(capsXML = virCapabilitiesFormatXML(caps)))
|
2014-06-05 11:53:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2017-03-24 18:37:50 +00:00
|
|
|
if (virAsprintf(&path, "%s/vircaps2xmldata/vircaps-%s-%s.xml",
|
|
|
|
abs_srcdir, archStr, data->filename) < 0)
|
2014-06-05 11:53:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2016-05-26 15:01:53 +00:00
|
|
|
if (virTestCompareToFile(capsXML, path) < 0)
|
2014-06-05 11:53:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2018-08-02 16:31:03 +00:00
|
|
|
VIR_FREE(system);
|
2017-05-17 09:08:33 +00:00
|
|
|
VIR_FREE(resctrl);
|
2014-06-05 11:53:16 +00:00
|
|
|
VIR_FREE(path);
|
|
|
|
VIR_FREE(capsXML);
|
|
|
|
virObjectUnref(caps);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mymain(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2018-08-02 16:31:03 +00:00
|
|
|
#define DO_TEST_FULL(filename, arch, offlineMigrate, liveMigrate) \
|
2017-11-03 12:09:47 +00:00
|
|
|
do { \
|
|
|
|
struct virCapabilitiesData data = {filename, arch, \
|
|
|
|
offlineMigrate, \
|
2018-08-02 16:31:03 +00:00
|
|
|
liveMigrate}; \
|
2017-11-03 12:09:47 +00:00
|
|
|
if (virTestRun(filename, test_virCapabilities, &data) < 0) \
|
|
|
|
ret = -1; \
|
2014-06-05 11:53:16 +00:00
|
|
|
} while (0)
|
|
|
|
|
2018-08-02 16:31:03 +00:00
|
|
|
DO_TEST_FULL("basic", VIR_ARCH_X86_64, false, false);
|
|
|
|
DO_TEST_FULL("basic", VIR_ARCH_AARCH64, true, false);
|
2017-03-24 18:37:50 +00:00
|
|
|
|
2018-08-02 16:31:03 +00:00
|
|
|
DO_TEST_FULL("caches", VIR_ARCH_X86_64, true, true);
|
2014-06-05 11:53:16 +00:00
|
|
|
|
2018-08-02 16:31:03 +00:00
|
|
|
DO_TEST_FULL("resctrl", VIR_ARCH_X86_64, true, true);
|
|
|
|
DO_TEST_FULL("resctrl-cdp", VIR_ARCH_X86_64, true, true);
|
|
|
|
DO_TEST_FULL("resctrl-skx", VIR_ARCH_X86_64, true, true);
|
|
|
|
DO_TEST_FULL("resctrl-skx-twocaches", VIR_ARCH_X86_64, true, true);
|
2017-03-31 12:36:58 +00:00
|
|
|
|
2014-06-05 11:53:16 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-29 14:45:42 +00:00
|
|
|
VIR_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/virnumamock.so")
|