]> git.ipfire.org Git - thirdparty/kmod.git/blob - testsuite/test-modinfo.c
testsuite: improve assert report
[thirdparty/kmod.git] / testsuite / test-modinfo.c
1 /*
2 * Copyright (C) 2012-2013 ProFUSION embedded systems
3 *
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.
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include <errno.h>
19 #include <inttypes.h>
20 #include <stddef.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25
26 #include "testsuite.h"
27
28 static noreturn int modinfo_jonsmodules(const struct test *t)
29 {
30 const char *progname = ABS_TOP_BUILDDIR "/tools/modinfo";
31 const char *const args[] = {
32 progname,
33 "/ext4-i686.ko", "/ext4-ppc64.ko", "/ext4-s390x.ko",
34 "/ext4-x86_64.ko", "/ext4-x86_64-sha1.ko",
35 "/ext4-x86_64-sha256.ko",
36 NULL,
37 };
38
39 test_spawn_prog(progname, args);
40 exit(EXIT_FAILURE);
41 }
42 DEFINE_TEST(modinfo_jonsmodules,
43 .description = "check if output for modinfo is correct for i686, ppc64, s390x and x86_64",
44 .config = {
45 [TC_ROOTFS] = TESTSUITE_ROOTFS "test-modinfo/",
46 },
47 .output = {
48 .out = TESTSUITE_ROOTFS "test-modinfo/correct.txt",
49 });
50
51 TESTSUITE_MAIN();