Message ID | 20180512194613.24059-1-petr.vorel@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
2018-05-13 4:46 GMT+09:00 Petr Vorel <petr.vorel@gmail.com>: > make testconfig appeared in these commits: > 022a4bf6b59d kconfig: tests: add framework for Kconfig unit testing > 1903c5119059 kconfig: tests: add basic choice tests > > Signed-off-by: Petr Vorel <petr.vorel@gmail.com> > --- > Makefile | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/Makefile b/Makefile > index d0d2652db174..da9a254203f7 100644 > --- a/Makefile > +++ b/Makefile > @@ -1477,6 +1477,9 @@ help: > @echo 'Documentation targets:' > @$(MAKE) -f $(srctree)/Documentation/Makefile dochelp > @echo '' > + @echo 'Testing targets:' > + @echo ' testconfig - Run Kconfig unit tests' > + @echo '' > @echo 'Architecture specific targets ($(SRCARCH)):' > @$(if $(archhelp),$(archhelp),\ > echo ' No architecture specific help defined for $(SRCARCH)') > -- I think this should be added to scripts/kconfig/Makefile Can you also mention 'python3 and pytest are required' ?
diff --git a/Makefile b/Makefile index d0d2652db174..da9a254203f7 100644 --- a/Makefile +++ b/Makefile @@ -1477,6 +1477,9 @@ help: @echo 'Documentation targets:' @$(MAKE) -f $(srctree)/Documentation/Makefile dochelp @echo '' + @echo 'Testing targets:' + @echo ' testconfig - Run Kconfig unit tests' + @echo '' @echo 'Architecture specific targets ($(SRCARCH)):' @$(if $(archhelp),$(archhelp),\ echo ' No architecture specific help defined for $(SRCARCH)')
make testconfig appeared in these commits: 022a4bf6b59d kconfig: tests: add framework for Kconfig unit testing 1903c5119059 kconfig: tests: add basic choice tests Signed-off-by: Petr Vorel <petr.vorel@gmail.com> --- Makefile | 3 +++ 1 file changed, 3 insertions(+)