]> git.ipfire.org Git - thirdparty/linux.git/blame - lib/kunit/Makefile
mm: remove both instances of __vmalloc_node_flags
[thirdparty/linux.git] / lib / kunit / Makefile
CommitLineData
9fe124bf
AM
1obj-$(CONFIG_KUNIT) += kunit.o
2
3kunit-objs += test.o \
6b229e59 4 string-stream.o \
5f3e0620
BH
5 assert.o \
6 try-catch.o
d8e2a76b 7
e2219db2
AM
8ifeq ($(CONFIG_KUNIT_DEBUGFS),y)
9kunit-objs += debugfs.o
10endif
11
c475c77d 12obj-$(CONFIG_KUNIT_TEST) += kunit-test.o
d8e2a76b 13
c475c77d
AM
14# string-stream-test compiles built-in only.
15ifeq ($(CONFIG_KUNIT_TEST),y)
16obj-$(CONFIG_KUNIT_TEST) += string-stream-test.o
17endif
18
19obj-$(CONFIG_KUNIT_EXAMPLE_TEST) += kunit-example-test.o