Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: a38fd8748464831584a19438cbb3082b5a2dab15 authored by Linus Torvalds on 06 March 2021, 01:33:41 UTC
Linux 5.12-rc2
Tip revision: a38fd87
Makefile
obj-$(CONFIG_KUNIT) +=			kunit.o

kunit-objs +=				test.o \
					string-stream.o \
					assert.o \
					try-catch.o \
					executor.o

ifeq ($(CONFIG_KUNIT_DEBUGFS),y)
kunit-objs +=				debugfs.o
endif

obj-$(CONFIG_KUNIT_TEST) +=		kunit-test.o

# string-stream-test compiles built-in only.
ifeq ($(CONFIG_KUNIT_TEST),y)
obj-$(CONFIG_KUNIT_TEST) +=		string-stream-test.o
endif

obj-$(CONFIG_KUNIT_EXAMPLE_TEST) +=	kunit-example-test.o
back to top