summaryrefslogtreecommitdiff
path: root/lib/kunit/Makefile
diff options
context:
space:
mode:
authorDaniel Latypov <dlatypov@google.com>2022-03-28 10:41:43 -0700
committerShuah Khan <skhan@linuxfoundation.org>2022-04-04 16:23:14 -0600
commitcdebea6968faafa955b3cc9196003e7f17f78955 (patch)
tree3c126d50f4a032005c2df111c7e332bb9f212cd1 /lib/kunit/Makefile
parent61695f8c5d5190db11aece403304f06d22c90597 (diff)
kunit: split resource API impl from test.c into new resource.c
We've split out the declarations from include/kunit/test.h into resource.h. This patch splits out the definitions as well for consistency. A side effect of this is git blame won't properly track history by default, users need to run $ git blame -L ,1 -C13 lib/kunit/resource.c Signed-off-by: Daniel Latypov <dlatypov@google.com> Reviewed-by: David Gow <davidgow@google.com> Reviewed-by: Brendan Higgins <brendanhiggins@google.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'lib/kunit/Makefile')
-rw-r--r--lib/kunit/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/kunit/Makefile b/lib/kunit/Makefile
index c49f4ffb6273..29aff6562b42 100644
--- a/lib/kunit/Makefile
+++ b/lib/kunit/Makefile
@@ -1,6 +1,7 @@
obj-$(CONFIG_KUNIT) += kunit.o
kunit-objs += test.o \
+ resource.o \
string-stream.o \
assert.o \
try-catch.o \