Merge tag 'block-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / lib / kunit / Makefile
blobc49f4ffb6273a84ec29eb9d185c51dd398787348
1 obj-$(CONFIG_KUNIT) += kunit.o
3 kunit-objs += test.o \
4 string-stream.o \
5 assert.o \
6 try-catch.o \
7 executor.o
9 ifeq ($(CONFIG_KUNIT_DEBUGFS),y)
10 kunit-objs += debugfs.o
11 endif
13 obj-$(CONFIG_KUNIT_TEST) += kunit-test.o
15 # string-stream-test compiles built-in only.
16 ifeq ($(CONFIG_KUNIT_TEST),y)
17 obj-$(CONFIG_KUNIT_TEST) += string-stream-test.o
18 endif
20 obj-$(CONFIG_KUNIT_EXAMPLE_TEST) += kunit-example-test.o