]> git.ipfire.org Git - thirdparty/kmod.git/blame - testsuite/test-modinfo.c
testsuite: port arch-specific tests to module-playground
[thirdparty/kmod.git] / testsuite / test-modinfo.c
CommitLineData
e701e381 1/*
e6b0e49b 2 * Copyright (C) 2012-2013 ProFUSION embedded systems
e701e381 3 *
e1b1ab24
LDM
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
e701e381
LDM
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e1b1ab24
LDM
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
e701e381 13 *
e1b1ab24 14 * You should have received a copy of the GNU Lesser General Public
dea2dfee 15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
e701e381
LDM
16 */
17
95daea07 18#include <errno.h>
95daea07 19#include <inttypes.h>
c2e4286b
LDM
20#include <stddef.h>
21#include <stdio.h>
22#include <stdlib.h>
95daea07 23#include <string.h>
c2e4286b 24#include <unistd.h>
95daea07
LDM
25
26#include "testsuite.h"
27
77fdc664
LDM
28static const char *progname = ABS_TOP_BUILDDIR "/tools/modinfo";
29
30#define DEFINE_MODINFO_TEST(_field) \
31static noreturn int test_modinfo_##_field(const struct test *t) \
32{ \
33 const char *const args[] = { \
34 progname, "-F", #_field ,\
35 "/mod-simple-i386.ko", "/mod-simple-x86_64.ko", "/mod-simple-sparc64.ko", \
36 NULL, \
37 }; \
38 test_spawn_prog(progname, args); \
39 exit(EXIT_FAILURE); \
40} \
41DEFINE_TEST(test_modinfo_##_field, \
42 .description = "check " #_field " output of modinfo for different architectures", \
43 .config = { \
44 [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modinfo/", \
45 }, \
46 .output = { \
47 .out = TESTSUITE_ROOTFS "test-modinfo/correct-" #_field ".txt", \
48 })
49
50DEFINE_MODINFO_TEST(filename);
51DEFINE_MODINFO_TEST(author);
52DEFINE_MODINFO_TEST(license);
53DEFINE_MODINFO_TEST(description);
54DEFINE_MODINFO_TEST(parm);
55DEFINE_MODINFO_TEST(depends);
56
57static noreturn int test_modinfo_signature(const struct test *t)
95daea07 58{
95daea07
LDM
59 const char *const args[] = {
60 progname,
77fdc664 61 "/ext4-x86_64-sha1.ko", "/ext4-x86_64-sha256.ko",
95daea07
LDM
62 NULL,
63 };
64
65 test_spawn_prog(progname, args);
66 exit(EXIT_FAILURE);
67}
77fdc664 68DEFINE_TEST(test_modinfo_signature,
95daea07 69 .description = "check if output for modinfo is correct for i686, ppc64, s390x and x86_64",
95daea07
LDM
70 .config = {
71 [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modinfo/",
72 },
73 .output = {
bd4e7340 74 .out = TESTSUITE_ROOTFS "test-modinfo/correct.txt",
c5d81989 75 });
95daea07 76
43289820 77TESTSUITE_MAIN();