diff options
author | Kees Cook <kees@kernel.org> | 2024-07-20 20:03:14 +0300 |
---|---|---|
committer | Kees Cook <kees@kernel.org> | 2024-07-23 04:25:47 +0300 |
commit | b6f5ee4d53019443fb99dd23bc08680b1244ccfa (patch) | |
tree | afaaac60d7987c758ed562e6be3a848ddf26c718 /fs/binfmt_elf.c | |
parent | 21f93108306026b8066db31c24a097192c8c36c7 (diff) | |
download | linux-b6f5ee4d53019443fb99dd23bc08680b1244ccfa.tar.xz |
execve: Move KUnit tests to tests/ subdirectory
Move the exec KUnit tests into a separate directory to avoid polluting
the local directory namespace. Additionally update MAINTAINERS for the
new files.
Reviewed-by: David Gow <davidgow@google.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Acked-by: Christian Brauner <brauner@kernel.org>
Link: https://lore.kernel.org/r/20240720170310.it.942-kees@kernel.org
Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'fs/binfmt_elf.c')
-rw-r--r-- | fs/binfmt_elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index 40111451aa95..04e748c5955f 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -2152,5 +2152,5 @@ core_initcall(init_elf_binfmt); module_exit(exit_elf_binfmt); #ifdef CONFIG_BINFMT_ELF_KUNIT_TEST -#include "binfmt_elf_test.c" +#include "tests/binfmt_elf_kunit.c" #endif |