summaryrefslogtreecommitdiff
path: root/drivers/base/test/Kconfig
diff options
context:
space:
mode:
authorAlan Maguire <alan.maguire@oracle.com>2020-01-14 16:09:43 +0000
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2020-01-17 00:23:37 +0100
commitaa811e3cececac2f65f7fa7e17ab46c73d778b2b (patch)
treece3edaa3c95a030c100d12001d0cf5e2fd1a3095 /drivers/base/test/Kconfig
parent5eb5afb07853d6e90d3a2b230c825e028e948f79 (diff)
software node: introduce CONFIG_KUNIT_DRIVER_PE_TEST
Currently the property entry kunit tests are built if CONFIG_KUNIT=y. This will cause warnings when merged with the kunit tree that now supports tristate CONFIG_KUNIT. While the tests appear to compile as a module, we get a warning about missing module license. It's better to have a per-test suite CONFIG variable so that we can do selective building of kunit-based suites, and can also avoid merge issues like this. Fixes: c032ace71c29 ("software node: add basic tests for property entries") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Reported-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Alan Maguire <alan.maguire@oracle.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/base/test/Kconfig')
-rw-r--r--drivers/base/test/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/base/test/Kconfig b/drivers/base/test/Kconfig
index 86e85daa80bf..305c7751184a 100644
--- a/drivers/base/test/Kconfig
+++ b/drivers/base/test/Kconfig
@@ -8,3 +8,6 @@ config TEST_ASYNC_DRIVER_PROBE
The module name will be test_async_driver_probe.ko
If unsure say N.
+config KUNIT_DRIVER_PE_TEST
+ bool "KUnit Tests for property entry API"
+ depends on KUNIT=y