Message ID | 20190920231923.141900-7-brendanhiggins@google.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | kunit: introduce KUnit, the Linux kernel unit testing framework | expand |
Quoting Brendan Higgins (2019-09-20 16:19:10) > KUnit is a new unit testing framework for the kernel and when used is > built into the kernel as a part of it. Add KUnit to the lib Kconfig and > Makefile to allow it to be actually built. > > Signed-off-by: Brendan Higgins <brendanhiggins@google.com> > Cc: Randy Dunlap <rdunlap@infradead.org> > Cc: Andrew Morton <akpm@linux-foundation.org> > Cc: Masahiro Yamada <yamada.masahiro@socionext.com> > Cc: Kees Cook <keescook@chromium.org> > --- > lib/Kconfig.debug | 2 ++ > lib/Makefile | 2 ++ > 2 files changed, 4 insertions(+) > > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug > index 5960e2980a8a..5870fbe11e9b 100644 > --- a/lib/Kconfig.debug > +++ b/lib/Kconfig.debug > @@ -2144,4 +2144,6 @@ config IO_STRICT_DEVMEM > > source "arch/$(SRCARCH)/Kconfig.debug" > > +source "lib/kunit/Kconfig" > + Perhaps this should go by the "Runtime Testing" part? Before or after. > endmenu # Kernel hacking
On Fri, Sep 20, 2019 at 4:36 PM Stephen Boyd <sboyd@kernel.org> wrote: > > Quoting Brendan Higgins (2019-09-20 16:19:10) > > KUnit is a new unit testing framework for the kernel and when used is > > built into the kernel as a part of it. Add KUnit to the lib Kconfig and > > Makefile to allow it to be actually built. > > > > Signed-off-by: Brendan Higgins <brendanhiggins@google.com> > > Cc: Randy Dunlap <rdunlap@infradead.org> > > Cc: Andrew Morton <akpm@linux-foundation.org> > > Cc: Masahiro Yamada <yamada.masahiro@socionext.com> > > Cc: Kees Cook <keescook@chromium.org> > > --- > > lib/Kconfig.debug | 2 ++ > > lib/Makefile | 2 ++ > > 2 files changed, 4 insertions(+) > > > > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug > > index 5960e2980a8a..5870fbe11e9b 100644 > > --- a/lib/Kconfig.debug > > +++ b/lib/Kconfig.debug > > @@ -2144,4 +2144,6 @@ config IO_STRICT_DEVMEM > > > > source "arch/$(SRCARCH)/Kconfig.debug" > > > > +source "lib/kunit/Kconfig" > > + > > Perhaps this should go by the "Runtime Testing" part? Before or after. Yeah, that probably makes sense. > > endmenu # Kernel hacking
On Fri, Sep 20, 2019 at 4:44 PM Brendan Higgins <brendanhiggins@google.com> wrote: > > On Fri, Sep 20, 2019 at 4:36 PM Stephen Boyd <sboyd@kernel.org> wrote: > > > > Quoting Brendan Higgins (2019-09-20 16:19:10) > > > KUnit is a new unit testing framework for the kernel and when used is > > > built into the kernel as a part of it. Add KUnit to the lib Kconfig and > > > Makefile to allow it to be actually built. > > > > > > Signed-off-by: Brendan Higgins <brendanhiggins@google.com> > > > Cc: Randy Dunlap <rdunlap@infradead.org> > > > Cc: Andrew Morton <akpm@linux-foundation.org> > > > Cc: Masahiro Yamada <yamada.masahiro@socionext.com> > > > Cc: Kees Cook <keescook@chromium.org> > > > --- > > > lib/Kconfig.debug | 2 ++ > > > lib/Makefile | 2 ++ > > > 2 files changed, 4 insertions(+) > > > > > > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug > > > index 5960e2980a8a..5870fbe11e9b 100644 > > > --- a/lib/Kconfig.debug > > > +++ b/lib/Kconfig.debug > > > @@ -2144,4 +2144,6 @@ config IO_STRICT_DEVMEM > > > > > > source "arch/$(SRCARCH)/Kconfig.debug" > > > > > > +source "lib/kunit/Kconfig" > > > + > > > > Perhaps this should go by the "Runtime Testing" part? Before or after. Now I am actually thinking that it should be a menuconfig... > > > endmenu # Kernel hacking
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 5960e2980a8a..5870fbe11e9b 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -2144,4 +2144,6 @@ config IO_STRICT_DEVMEM source "arch/$(SRCARCH)/Kconfig.debug" +source "lib/kunit/Kconfig" + endmenu # Kernel hacking diff --git a/lib/Makefile b/lib/Makefile index 29c02a924973..67e79d3724ed 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -96,6 +96,8 @@ obj-$(CONFIG_TEST_MEMINIT) += test_meminit.o obj-$(CONFIG_TEST_LIVEPATCH) += livepatch/ +obj-$(CONFIG_KUNIT) += kunit/ + ifeq ($(CONFIG_DEBUG_KOBJECT),y) CFLAGS_kobject.o += -DDEBUG CFLAGS_kobject_uevent.o += -DDEBUG
KUnit is a new unit testing framework for the kernel and when used is built into the kernel as a part of it. Add KUnit to the lib Kconfig and Makefile to allow it to be actually built. Signed-off-by: Brendan Higgins <brendanhiggins@google.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Kees Cook <keescook@chromium.org> --- lib/Kconfig.debug | 2 ++ lib/Makefile | 2 ++ 2 files changed, 4 insertions(+)