diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2015-01-29 17:40:25 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-31 05:06:33 +0300 |
commit | 9d6dbe1bbaf8bf03804c164fb67a98646bf2f622 (patch) | |
tree | 8d9dfb332d0cfea4f35d18e4cec4e0b7bbd3d86e /lib/Makefile | |
parent | 207895fd388c7c4c48bc33055cd726d9e750298c (diff) | |
download | linux-9d6dbe1bbaf8bf03804c164fb67a98646bf2f622.tar.xz |
rhashtable: Make selftest modular
Allow the selftest on the resizable hash table to be built modular, just
like all other tests that do not depend on DEBUG_KERNEL.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 3c3b30b9e020..a8cf98d14199 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -35,6 +35,7 @@ obj-$(CONFIG_TEST_LKM) += test_module.o obj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o obj-$(CONFIG_TEST_BPF) += test_bpf.o obj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o +obj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o ifeq ($(CONFIG_DEBUG_KOBJECT),y) CFLAGS_kobject.o += -DDEBUG |