diff options
author | David Decotigny <decot@googlers.com> | 2016-02-19 09:24:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-19 22:54:09 -0500 |
commit | 5fd003f56c2c584b62a0486ad25bbd4be02b8b6c (patch) | |
tree | 17e2cfd6f198fe731c75c01ec9eca263ba8cb6ca /lib/Makefile | |
parent | e52bc7c28ac9f54db6f86b19ed65c599def18c98 (diff) | |
download | linux-5fd003f56c2c584b62a0486ad25bbd4be02b8b6c.tar.gz linux-5fd003f56c2c584b62a0486ad25bbd4be02b8b6c.tar.bz2 linux-5fd003f56c2c584b62a0486ad25bbd4be02b8b6c.zip |
test_bitmap: unit tests for lib/bitmap.c
This is mainly testing bitmap construction and conversion to/from u32[]
for now.
Tested:
qemu i386, x86_64, ppc, ppc64 BE and LE, ARM.
Signed-off-by: David Decotigny <decot@googlers.com>
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 a7c26a41a738..dda4039588b1 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -43,6 +43,7 @@ obj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o obj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o obj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o obj-$(CONFIG_TEST_PRINTF) += test_printf.o +obj-$(CONFIG_TEST_BITMAP) += test_bitmap.o ifeq ($(CONFIG_DEBUG_KOBJECT),y) CFLAGS_kobject.o += -DDEBUG |