“f5e54d6e53a20cef45af7499e86164f0e0d16bb2”上不存在“fs/ext4/inode.c”
vircaps2xmltest.c 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * 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"
28
#include "virfilewrapper.h"
29 30 31 32


#define VIR_FROM_THIS VIR_FROM_NONE

33
struct virCapabilitiesData {
34
    const char *filename;
35 36 37
    virArch arch;
    bool offlineMigrate;
    bool liveMigrate;
38
    bool resctrl; /* Whether both resctrl and system sysfs are used */
39 40 41
};

static int
42
test_virCapabilities(const void *opaque)
43
{
44 45
    struct virCapabilitiesData *data = (struct virCapabilitiesData *) opaque;
    const char *archStr = virArchToString(data->arch);
46 47 48
    virCapsPtr caps = NULL;
    char *capsXML = NULL;
    char *path = NULL;
49
    char *dir = NULL;
50 51
    int ret = -1;

52 53 54 55 56 57 58
    /*
     * We want to keep our directory structure clean, so if there's both resctrl
     * and system used, we need to use slightly different path; a subdir.
     */
    if (virAsprintf(&dir, "%s/vircaps2xmldata/linux-%s%s",
                    abs_srcdir, data->filename,
                    data->resctrl ? "/system" : "") < 0)
59 60
        goto cleanup;

61
    virFileWrapperAddPrefix("/sys/devices/system", dir);
62 63 64 65 66
    caps = virCapabilitiesNew(data->arch, data->offlineMigrate, data->liveMigrate);

    if (!caps)
        goto cleanup;

67 68
    if (virCapabilitiesInitNUMA(caps) < 0 ||
        virCapabilitiesInitCaches(caps) < 0)
69 70
        goto cleanup;

71
    virFileWrapperClearPrefixes();
72

73
    if (!(capsXML = virCapabilitiesFormatXML(caps)))
74 75
        goto cleanup;

76 77
    if (virAsprintf(&path, "%s/vircaps2xmldata/vircaps-%s-%s.xml",
                    abs_srcdir, archStr, data->filename) < 0)
78 79
        goto cleanup;

80
    if (virTestCompareToFile(capsXML, path) < 0)
81 82 83 84 85
        goto cleanup;

    ret = 0;

 cleanup:
86
    VIR_FREE(dir);
87 88 89 90 91 92 93 94 95 96 97
    VIR_FREE(path);
    VIR_FREE(capsXML);
    virObjectUnref(caps);
    return ret;
}

static int
mymain(void)
{
    int ret = 0;

98
#define DO_TEST_FULL(filename, arch, offlineMigrate, liveMigrate, resctrl) \
99 100 101
    do {                                                                \
        struct virCapabilitiesData data = {filename, arch,              \
                                           offlineMigrate,              \
102
                                           liveMigrate, resctrl};       \
103 104
        if (virTestRun(filename, test_virCapabilities, &data) < 0)      \
            ret = -1;                                                   \
105 106
    } while (0)

107
#define DO_TEST(filename, arch) DO_TEST_FULL(filename, arch, true, true, false)
108

109 110
    DO_TEST_FULL("basic", VIR_ARCH_X86_64, false, false, false);
    DO_TEST_FULL("basic", VIR_ARCH_AARCH64, true, false, false);
111 112

    DO_TEST("caches", VIR_ARCH_X86_64);
113

114 115
    DO_TEST_FULL("resctrl", VIR_ARCH_X86_64, true, true, true);

116 117 118
    return ret;
}

119
VIR_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/virnumamock.so")