From: Yu Watanabe Date: Thu, 4 Jun 2026 16:26:41 +0000 (+0900) Subject: test: add missing bpf dependency X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1146c355f4469600d55307c32b46842c045f9043;p=thirdparty%2Fsystemd.git test: add missing bpf dependency Fixes the following build error: ``` ninja: job failed: cc (snip) -o test-bpf-restrict-fsaccess.p/src_test_test-bpf-restrict-fsaccess.c.o -c ../src/test/test-bpf-restrict-fsaccess.c In file included from ../src/test/test-bpf-restrict-fsaccess.c:96: src/bpf/restrict-fsaccess-skel.h:19:10: fatal error: restrict-fsaccess.bpf.skel.h: No such file or directory 19 | #include "restrict-fsaccess.bpf.skel.h" /* IWYU pragma: export */ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. ninja: subcommand failed ``` Follow-up for e6fc73350f9485064302e687b964f70b28b2e4f6. --- diff --git a/src/test/meson.build b/src/test/meson.build index 072cb64718c..5d96b2fe74b 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -513,6 +513,7 @@ executables += [ core_test_template + { 'sources' : files('test-bpf-restrict-fsaccess.c'), 'dependencies' : common_test_dependencies, + 'bpf_programs' : ['restrict-fsaccess'], 'type' : 'manual', }, core_test_template + {