diff options
author | 2025-02-11 14:25:28 +0100 | |
---|---|---|
committer | 2025-02-14 09:23:06 +0100 | |
commit | 89cb121e94612cd3bb3c74b0e772ead5b40b7a5d (patch) | |
tree | 335b5ef191a3960a8091b0f8182f169aa841d255 | |
parent | Linux 6.14-rc2 (diff) | |
download | linux-rng-89cb121e94612cd3bb3c74b0e772ead5b40b7a5d.tar.xz linux-rng-89cb121e94612cd3bb3c74b0e772ead5b40b7a5d.zip |
selftests/landlock: Enable the new CONFIG_AF_UNIX_OOB
Since commit 5155cbcdbf03 ("af_unix: Add a prompt to
CONFIG_AF_UNIX_OOB"), the Landlock selftests's configuration is not
enough to build a minimal kernel. Because scoped_signal_test checks
with the MSG_OOB flag, we need to enable CONFIG_AF_UNIX_OOB for tests:
# RUN fown.no_sandbox.sigurg_socket ...
# scoped_signal_test.c:420:sigurg_socket:Expected 1 (1) == send(client_socket, ".", 1, MSG_OOB) (-1)
# sigurg_socket: Test terminated by assertion
# FAIL fown.no_sandbox.sigurg_socket
...
Cc: Günther Noack <gnoack@google.com>
Acked-by: Florent Revest <revest@chromium.org>
Link: https://lore.kernel.org/r/20250211132531.1625566-1-mic@digikod.net
Signed-off-by: Mickaël Salaün <mic@digikod.net>
-rw-r--r-- | tools/testing/selftests/landlock/config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/landlock/config b/tools/testing/selftests/landlock/config index 29af19c4e9f9..361f94f8cb0d 100644 --- a/tools/testing/selftests/landlock/config +++ b/tools/testing/selftests/landlock/config @@ -1,3 +1,4 @@ +CONFIG_AF_UNIX_OOB=y CONFIG_CGROUPS=y CONFIG_CGROUP_SCHED=y CONFIG_INET=y |