Re: [PATCH v2 1/6] kunit: Kconfig: enable a KUNIT_RUN_ALL fragment

2020-05-06 Thread David Gow
On Wed, May 6, 2020 at 6:33 PM Anders Roxell wrote: > > Hi David, > > Thank you for the review. > > On Wed, 6 May 2020 at 07:08, David Gow wrote: > > > > On Tue, May 5, 2020 at 6:27 PM Anders Roxell > > wrote: > > > > > > Make it easier to enable all KUnit fragments. This is needed for kernel

Re: [PATCH v2 1/6] kunit: Kconfig: enable a KUNIT_RUN_ALL fragment

2020-05-06 Thread Anders Roxell
Hi David, Thank you for the review. On Wed, 6 May 2020 at 07:08, David Gow wrote: > > On Tue, May 5, 2020 at 6:27 PM Anders Roxell wrote: > > > > Make it easier to enable all KUnit fragments. This is needed for kernel > > test-systems, so its easy to get all KUnit tests enabled and if new gets

Re: [PATCH v2 1/6] kunit: Kconfig: enable a KUNIT_RUN_ALL fragment

2020-05-05 Thread David Gow
On Tue, May 5, 2020 at 6:27 PM Anders Roxell wrote: > > Make it easier to enable all KUnit fragments. This is needed for kernel > test-systems, so its easy to get all KUnit tests enabled and if new gets > added they will be enabled as well. Fragments that has to be builtin > will be missed if CO

[PATCH v2 1/6] kunit: Kconfig: enable a KUNIT_RUN_ALL fragment

2020-05-05 Thread Anders Roxell
Make it easier to enable all KUnit fragments. This is needed for kernel test-systems, so its easy to get all KUnit tests enabled and if new gets added they will be enabled as well. Fragments that has to be builtin will be missed if CONFIG_KUNIT_RUN_ALL is set as a module. Signed-off-by: Anders R