diff options
author | Brendan Higgins <brendanhiggins@google.com> | 2019-09-23 12:02:37 +0300 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2019-10-01 02:35:01 +0300 |
commit | d8e2a76b4c7918e4639de17db3d35c86ceb48506 (patch) | |
tree | 5b41f982b31fe6a5537f2231c0c81d6251d895c8 /lib/kunit/Makefile | |
parent | 84bc809eecf37f3bd3ee7d2002b2528787a11cb1 (diff) | |
download | linux-d8e2a76b4c7918e4639de17db3d35c86ceb48506.tar.xz |
kunit: test: add initial tests
Add a test for string stream along with a simpler example.
Signed-off-by: Brendan Higgins <brendanhiggins@google.com>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'lib/kunit/Makefile')
-rw-r--r-- | lib/kunit/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/kunit/Makefile b/lib/kunit/Makefile index 6dcbe309036b..4e46450bcb3a 100644 --- a/lib/kunit/Makefile +++ b/lib/kunit/Makefile @@ -1,3 +1,7 @@ obj-$(CONFIG_KUNIT) += test.o \ string-stream.o \ assert.o + +obj-$(CONFIG_KUNIT_TEST) += string-stream-test.o + +obj-$(CONFIG_KUNIT_EXAMPLE_TEST) += example-test.o |