diff options
author | Johannes Berg <johannes.berg@intel.com> | 2024-03-25 17:43:32 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2024-03-25 17:45:18 +0100 |
commit | dbde9fd49aafc9a09480db2a827159b109042e1a (patch) | |
tree | 2a41662b7e19488b253163e147ebedc40c8071bf /tools | |
parent | e78d7877308989ef91b64a3c746ae31324c07caa (diff) |
kunit: fix wireless test dependencies
For the wireless tests, CONFIG_WLAN and CONFIG_NETDEVICES are
needed, though seem to be available by default on ARCH=um, so
we didn't notice this before. Add them to fix kunit running
on other architectures.
Fixes: 28b3df1fe6ba ("kunit: add wireless unit tests")
Reported-by: Mark Brown <broonie@kernel.org>
Closes: https://lore.kernel.org/r/b743a5ec-3d07-4747-85e0-2fb2ef69db7c@sirena.org.uk/
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/kunit/configs/all_tests.config | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/kunit/configs/all_tests.config b/tools/testing/kunit/configs/all_tests.config index a6cf69a665e8..76d049cdfca1 100644 --- a/tools/testing/kunit/configs/all_tests.config +++ b/tools/testing/kunit/configs/all_tests.config @@ -28,6 +28,8 @@ CONFIG_MCTP_FLOWS=y CONFIG_INET=y CONFIG_MPTCP=y +CONFIG_NETDEVICES=y +CONFIG_WLAN=y CONFIG_CFG80211=y CONFIG_MAC80211=y CONFIG_WLAN_VENDOR_INTEL=y |