blob: d7802d7b2e0ba6b9f6a94af90c69694de1c72e50 [file] [log] [blame]
Lucas De Marchib0c9fc82012-10-04 01:08:13 -03001/*
Lucas De Marchie6b0e492013-01-16 11:27:21 -02002 * Copyright (C) 2012-2013 ProFUSION embedded systems
Lucas De Marchib0c9fc82012-10-04 01:08:13 -03003 *
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
Lucas De Marchidea2dfe2014-12-25 23:32:03 -020015 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030016 */
17
Lucas De Marchic2e42862014-10-03 01:41:42 -030018#include <errno.h>
19#include <inttypes.h>
20#include <stddef.h>
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030021#include <stdio.h>
22#include <stdlib.h>
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030023#include <string.h>
Lucas De Marchic2e42862014-10-03 01:41:42 -030024#include <unistd.h>
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030025
26#include "testsuite.h"
27
Lucas De Marchi2a388702015-02-19 19:50:16 -020028#define MODULES_ORDER_UNAME "4.4.4"
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030029#define MODULES_ORDER_ROOTFS TESTSUITE_ROOTFS "test-depmod/modules-order-compressed"
30#define MODULES_ORDER_LIB_MODULES MODULES_ORDER_ROOTFS "/lib/modules/" MODULES_ORDER_UNAME
Lucas De Marchid96ca9c2013-12-17 19:10:16 -020031static noreturn int depmod_modules_order_for_compressed(const struct test *t)
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030032{
Lucas De Marchib6adccd2013-07-04 16:01:55 -030033 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030034 const char *const args[] = {
35 progname,
36 NULL,
37 };
38
39 test_spawn_prog(progname, args);
40 exit(EXIT_FAILURE);
41}
Lucas De Marchi43289822014-10-09 14:29:04 -030042
Lucas De Marchif1155c12014-10-09 13:00:30 -030043DEFINE_TEST(depmod_modules_order_for_compressed,
Marius Bakke847247a2020-08-01 18:02:22 +020044#if defined(KMOD_SYSCONFDIR_NOT_ETC)
45 .skip = true,
46#endif
Lucas De Marchib0c9fc82012-10-04 01:08:13 -030047 .description = "check if depmod let aliases in right order when using compressed modules",
48 .config = {
49 [TC_UNAME_R] = MODULES_ORDER_UNAME,
50 [TC_ROOTFS] = MODULES_ORDER_ROOTFS,
51 },
52 .output = {
53 .files = (const struct keyval[]) {
54 { MODULES_ORDER_LIB_MODULES "/correct-modules.alias",
55 MODULES_ORDER_LIB_MODULES "/modules.alias" },
56 { }
57 },
58 });
59
Lucas De Marchiaa0abec2014-03-19 07:59:38 -030060#define SEARCH_ORDER_SIMPLE_ROOTFS TESTSUITE_ROOTFS "test-depmod/search-order-simple"
61static noreturn int depmod_search_order_simple(const struct test *t)
62{
63 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
64 const char *const args[] = {
65 progname,
66 NULL,
67 };
68
69 test_spawn_prog(progname, args);
70 exit(EXIT_FAILURE);
71}
Lucas De Marchif1155c12014-10-09 13:00:30 -030072DEFINE_TEST(depmod_search_order_simple,
Lucas De Marchiaa0abec2014-03-19 07:59:38 -030073 .description = "check if depmod honor search order in config",
74 .config = {
75 [TC_UNAME_R] = "4.4.4",
76 [TC_ROOTFS] = SEARCH_ORDER_SIMPLE_ROOTFS,
77 },
78 .output = {
79 .files = (const struct keyval[]) {
80 { SEARCH_ORDER_SIMPLE_ROOTFS "/lib/modules/4.4.4/correct-modules.dep",
81 SEARCH_ORDER_SIMPLE_ROOTFS "/lib/modules/4.4.4/modules.dep" },
82 { }
83 },
84 });
85
Lucas De Marchiad7f1752014-03-19 09:15:59 -030086#define SEARCH_ORDER_SAME_PREFIX_ROOTFS TESTSUITE_ROOTFS "test-depmod/search-order-same-prefix"
87static noreturn int depmod_search_order_same_prefix(const struct test *t)
88{
89 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
90 const char *const args[] = {
91 progname,
92 NULL,
93 };
94
95 test_spawn_prog(progname, args);
96 exit(EXIT_FAILURE);
97}
Lucas De Marchif1155c12014-10-09 13:00:30 -030098DEFINE_TEST(depmod_search_order_same_prefix,
Lucas De Marchiad7f1752014-03-19 09:15:59 -030099 .description = "check if depmod honor search order in config with same prefix",
100 .config = {
101 [TC_UNAME_R] = "4.4.4",
102 [TC_ROOTFS] = SEARCH_ORDER_SAME_PREFIX_ROOTFS,
103 },
104 .output = {
105 .files = (const struct keyval[]) {
106 { SEARCH_ORDER_SAME_PREFIX_ROOTFS "/lib/modules/4.4.4/correct-modules.dep",
107 SEARCH_ORDER_SAME_PREFIX_ROOTFS "/lib/modules/4.4.4/modules.dep" },
108 { }
109 },
110 });
111
Lucas De Marchi8183cfa2014-05-30 09:36:21 -0300112#define DETECT_LOOP_ROOTFS TESTSUITE_ROOTFS "test-depmod/detect-loop"
113static noreturn int depmod_detect_loop(const struct test *t)
114{
115 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
116 const char *const args[] = {
117 progname,
118 NULL,
119 };
120
121 test_spawn_prog(progname, args);
122 exit(EXIT_FAILURE);
123}
Lucas De Marchif1155c12014-10-09 13:00:30 -0300124DEFINE_TEST(depmod_detect_loop,
Marius Bakke847247a2020-08-01 18:02:22 +0200125#if defined(KMOD_SYSCONFDIR_NOT_ETC)
126 .skip = true,
127#endif
Lucas De Marchi8183cfa2014-05-30 09:36:21 -0300128 .description = "check if depmod detects module loops correctly",
129 .config = {
130 [TC_UNAME_R] = "4.4.4",
131 [TC_ROOTFS] = DETECT_LOOP_ROOTFS,
132 },
133 .expected_fail = true,
Lucas De Marchi7a2d0e62014-05-30 10:26:17 -0300134 .output = {
135 .err = DETECT_LOOP_ROOTFS "/correct.txt",
136 });
Lucas De Marchi8183cfa2014-05-30 09:36:21 -0300137
Yauheni Kaliutadf492f52017-05-09 22:09:24 +0300138#define SEARCH_ORDER_EXTERNAL_FIRST_ROOTFS TESTSUITE_ROOTFS "test-depmod/search-order-external-first"
139static noreturn int depmod_search_order_external_first(const struct test *t)
140{
141 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
142 const char *const args[] = {
143 progname,
144 NULL,
145 };
146
147 test_spawn_prog(progname, args);
148 exit(EXIT_FAILURE);
149}
150DEFINE_TEST(depmod_search_order_external_first,
Marius Bakke847247a2020-08-01 18:02:22 +0200151#if defined(KMOD_SYSCONFDIR_NOT_ETC)
152 .skip = true,
153#endif
Yauheni Kaliutadf492f52017-05-09 22:09:24 +0300154 .description = "check if depmod honor external keyword with higher priority",
155 .config = {
156 [TC_UNAME_R] = "4.4.4",
157 [TC_ROOTFS] = SEARCH_ORDER_EXTERNAL_FIRST_ROOTFS,
158 },
159 .output = {
160 .files = (const struct keyval[]) {
161 { SEARCH_ORDER_EXTERNAL_FIRST_ROOTFS "/lib/modules/4.4.4/correct-modules.dep",
162 SEARCH_ORDER_EXTERNAL_FIRST_ROOTFS "/lib/modules/4.4.4/modules.dep" },
163 { }
164 },
165 });
166
167#define SEARCH_ORDER_EXTERNAL_LAST_ROOTFS TESTSUITE_ROOTFS "test-depmod/search-order-external-last"
168static noreturn int depmod_search_order_external_last(const struct test *t)
169{
170 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
171 const char *const args[] = {
172 progname,
173 NULL,
174 };
175
176 test_spawn_prog(progname, args);
177 exit(EXIT_FAILURE);
178}
179DEFINE_TEST(depmod_search_order_external_last,
180 .description = "check if depmod honor external keyword with lower priority",
181 .config = {
182 [TC_UNAME_R] = "4.4.4",
183 [TC_ROOTFS] = SEARCH_ORDER_EXTERNAL_LAST_ROOTFS,
184 },
185 .output = {
186 .files = (const struct keyval[]) {
187 { SEARCH_ORDER_EXTERNAL_LAST_ROOTFS "/lib/modules/4.4.4/correct-modules.dep",
188 SEARCH_ORDER_EXTERNAL_LAST_ROOTFS "/lib/modules/4.4.4/modules.dep" },
189 { }
190 },
191 });
192
Yauheni Kaliuta809b9fb2017-12-07 21:16:07 +0200193#define SEARCH_ORDER_OVERRIDE_ROOTFS TESTSUITE_ROOTFS "test-depmod/search-order-override"
194static noreturn int depmod_search_order_override(const struct test *t)
195{
196 const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
197 const char *const args[] = {
198 progname,
199 NULL,
200 };
201
202 test_spawn_prog(progname, args);
203 exit(EXIT_FAILURE);
204}
205DEFINE_TEST(depmod_search_order_override,
Marius Bakke847247a2020-08-01 18:02:22 +0200206#if defined(KMOD_SYSCONFDIR_NOT_ETC)
207 .skip = true,
208#endif
Yauheni Kaliuta809b9fb2017-12-07 21:16:07 +0200209 .description = "check if depmod honor override keyword",
210 .config = {
211 [TC_UNAME_R] = "4.4.4",
212 [TC_ROOTFS] = SEARCH_ORDER_OVERRIDE_ROOTFS,
213 },
214 .output = {
215 .files = (const struct keyval[]) {
216 { SEARCH_ORDER_OVERRIDE_ROOTFS "/lib/modules/4.4.4/correct-modules.dep",
217 SEARCH_ORDER_OVERRIDE_ROOTFS "/lib/modules/4.4.4/modules.dep" },
218 { }
219 },
220 });
221
Lucas De Marchi43289822014-10-09 14:29:04 -0300222TESTSUITE_MAIN();