]> git.ipfire.org Git - thirdparty/kmod.git/blame - testsuite/test-modinfo.c
testsuite: Add modinfo test for module signatures
[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
LDM
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
e701e381
LDM
17 */
18
95daea07
LDM
19#include <stdio.h>
20#include <stdlib.h>
21#include <stddef.h>
22#include <errno.h>
23#include <unistd.h>
24#include <inttypes.h>
25#include <string.h>
26
27#include "testsuite.h"
28
32d29b35 29static __noreturn int modinfo_jonsmodules(const struct test *t)
95daea07
LDM
30{
31 const char *progname = ABS_TOP_BUILDDIR "/tools/modinfo";
32 const char *const args[] = {
33 progname,
34 "/ext4-i686.ko", "/ext4-ppc64.ko", "/ext4-s390x.ko",
709b8634
MM
35 "/ext4-x86_64.ko", "/ext4-x86_64-sha1.ko",
36 "/ext4-x86_64-sha256.ko",
95daea07
LDM
37 NULL,
38 };
39
40 test_spawn_prog(progname, args);
41 exit(EXIT_FAILURE);
42}
c5d81989 43static DEFINE_TEST(modinfo_jonsmodules,
95daea07 44 .description = "check if output for modinfo is correct for i686, ppc64, s390x and x86_64",
95daea07
LDM
45 .config = {
46 [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modinfo/",
47 },
48 .output = {
49 .stdout = TESTSUITE_ROOTFS "test-modinfo/correct.txt",
c5d81989 50 });
95daea07
LDM
51
52static const struct test *tests[] = {
53 &smodinfo_jonsmodules,
54 NULL,
55};
56
e9fa9de3 57TESTSUITE_MAIN(tests);