Back to home page

OSCL-LXR

 
 

    


0001 obj-$(CONFIG_KUNIT) +=                  kunit.o
0002 
0003 kunit-objs +=                           test.o \
0004                                         resource.o \
0005                                         string-stream.o \
0006                                         assert.o \
0007                                         try-catch.o \
0008                                         executor.o
0009 
0010 ifeq ($(CONFIG_KUNIT_DEBUGFS),y)
0011 kunit-objs +=                           debugfs.o
0012 endif
0013 
0014 obj-$(CONFIG_KUNIT_TEST) +=             kunit-test.o
0015 
0016 # string-stream-test compiles built-in only.
0017 ifeq ($(CONFIG_KUNIT_TEST),y)
0018 obj-$(CONFIG_KUNIT_TEST) +=             string-stream-test.o
0019 endif
0020 
0021 obj-$(CONFIG_KUNIT_EXAMPLE_TEST) +=     kunit-example-test.o