Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1589425
| From | Geert Uytterhoeven <geert@linux-m68k.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/3] lib: add module support to array-based sort tests |
| Date | 2017-02-28 14:10 +0100 |
| Message-ID | <tfPHr-4Pz-5@gated-at.bofh.it> (permalink) |
| References | <tfPHr-4Pz-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Allow to compile the array-based sort test code either to a loadable module, or builtin into the kernel. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> --- lib/Kconfig.debug | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 55735c9bdb75a23e..90b2348777495b72 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1740,10 +1740,11 @@ config TEST_LIST_SORT If unsure, say N. config TEST_SORT - bool "Array-based sort test" - depends on DEBUG_KERNEL + tristate "Array-based sort test" + depends on DEBUG_KERNEL || m help - This option enables the self-test function of 'sort()' at boot. + This option enables the self-test function of 'sort()' at boot, + or at module load time. If unsure, say N. -- 2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 2/3] lib: add module support to array-based sort tests Geert Uytterhoeven <geert@linux-m68k.org> - 2017-02-28 14:10 +0100
csiph-web