On Sun, Sep 22, 2019 at 9:28 AM Randy Dunlap rdunlap@infradead.org wrote:
On 9/20/19 5:18 PM, Brendan Higgins wrote:
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
lib/kunit/Kconfig | 25 ++++++++++ lib/kunit/Makefile | 4 ++ lib/kunit/example-test.c | 88 ++++++++++++++++++++++++++++++++++ lib/kunit/string-stream-test.c | 52 ++++++++++++++++++++ 4 files changed, 169 insertions(+) create mode 100644 lib/kunit/example-test.c create mode 100644 lib/kunit/string-stream-test.c
diff --git a/lib/kunit/Kconfig b/lib/kunit/Kconfig index 666b9cb67a74..3868c226cf31 100644 --- a/lib/kunit/Kconfig +++ b/lib/kunit/Kconfig @@ -11,3 +11,28 @@ menuconfig KUNIT special hardware when using UML. Can also be used on most other architectures. For more information, please see Documentation/dev-tools/kunit/.
+if KUNIT
The 'if' above provides the dependency clause, so the 2 'depends on KUNIT' below are not needed. They are redundant.
Thanks for catching that. I fixed it in the new revision I just sent out.
+config KUNIT_TEST
bool "KUnit test for KUnit"depends on KUNIThelpEnables the unit tests for the KUnit test framework. These tests testthe KUnit test framework itself; the tests are both written usingKUnit and test KUnit. This option should only be enabled for testingpurposes by developers interested in testing that KUnit works asexpected.+config KUNIT_EXAMPLE_TEST
bool "Example test for KUnit"depends on KUNIThelpEnables an example unit test that illustrates some of the basicfeatures of KUnit. This test only exists to help new users understandwhat KUnit is and how it is used. Please refer to the example testitself, lib/kunit/example-test.c, for more information. This optionis intended for curious hackers who would like to understand how touse KUnit for kernel development.+endif # KUNIT
Cheers