Message ID | 20201126184946.1708213-1-kpsingh@chromium.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 854055c0cf30d732b3514ce7956976f60496b1a1 |
Delegated to: | BPF |
Headers | show |
Series | [bpf-next] selftests/bpf: Fix flavored variants of test_ima | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for bpf-next |
netdev/subject_prefix | success | Link |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 7 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
netdev/stable | success | Stable not CCed |
Hello: This patch was applied to bpf/bpf-next.git (refs/heads/master): On Thu, 26 Nov 2020 18:49:46 +0000 you wrote: > From: KP Singh <kpsingh@google.com> > > Flavored variants of test_progs (e.g. test_progs-no_alu32) change their > working directory to the corresponding subdirectory (e.g. no_alu32). > Since the setup script required by test_ima (ima_setup.sh) is not > mentioned in the dependencies, it does not get copied to these > subdirectories and causes flavored variants of test_ima to fail. > > [...] Here is the summary with links: - [bpf-next] selftests/bpf: Fix flavored variants of test_ima https://git.kernel.org/bpf/bpf-next/c/854055c0cf30 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/tools/testing/selftests/bpf/Makefile b/tools/testing/selftests/bpf/Makefile index 3d5940cd110d..894192c319fb 100644 --- a/tools/testing/selftests/bpf/Makefile +++ b/tools/testing/selftests/bpf/Makefile @@ -389,6 +389,7 @@ TRUNNER_EXTRA_SOURCES := test_progs.c cgroup_helpers.c trace_helpers.c \ network_helpers.c testing_helpers.c \ btf_helpers.c flow_dissector_load.h TRUNNER_EXTRA_FILES := $(OUTPUT)/urandom_read \ + ima_setup.sh \ $(wildcard progs/btf_dump_test_case_*.c) TRUNNER_BPF_BUILD_RULE := CLANG_BPF_BUILD_RULE TRUNNER_BPF_CFLAGS := $(BPF_CFLAGS) $(CLANG_CFLAGS)