+KUnit Development +open list:KERNEL SELFTEST FRAMEWORK On Mon, Jan 13, 2020 at 3:40 PM Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> wrote: > > Hi Randy, > > On Mon, 13 Jan 2020 14:59:54 -0800 Randy Dunlap <rdunlap@xxxxxxxxxxxxx> wrote: > > > > on i386: > > > > WARNING: modpost: missing MODULE_LICENSE() in drivers/base/test/property-entry-test.o > > see include/linux/module.h for more information > > Sorry, I missed that yesterday. > > Caused by commit > > c032ace71c29 ("software node: add basic tests for property entries") > > from the pm tree interacting with commit > > 9fe124bf1b77 ("kunit: allow kunit to be loaded as a module") > > from the kunit-next tree. Yes, the problem seems to be that the property-entry-test is turned on when CONFIG_KUNIT is y or m. >From drivers/base/test/Makefile: ... obj-$(CONFIG_KUNIT) += property-entry-test.o It seems we can fix it just by adding the missing MODULE_LICENSE, but I think there is a bigger question of whether we should let people do this. Do we want to just let people have their tests run whenever CONFIG_KUNIT is enabled? I am inclined to think no. It should be possible for people to run their test and their test only.