lib/kunit/Makefile

Source file repositories/reference/linux-study-clean/lib/kunit/Makefile

File Facts

System
Linux kernel
Corpus path
lib/kunit/Makefile
Extension
[no extension]
Size
814 bytes
Lines
34
Domain
Kernel Services
Bucket
lib
Inferred role
Kernel Services: build/configuration rule
Status
atlas-only

Why This File Exists

Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.

Dependency Surface

Detected Declarations

Annotated Snippet

obj-$(CONFIG_KUNIT) +=			kunit.o

kunit-objs +=				test.o \
					resource.o \
					user_alloc.o \
					static_stub.o \
					string-stream.o \
					assert.o \
					try-catch.o \
					executor.o \
					attributes.o \
					device.o \
					platform.o \
					bug.o

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

# KUnit 'hooks' are built-in even when KUnit is built as a module.
obj-$(if $(CONFIG_KUNIT),y) +=		hooks.o

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

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

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

Annotation

Implementation Notes