diff options
author | Jeremy Kerr <jk@codeconstruct.com.au> | 2021-10-03 11:17:04 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-03 14:35:41 +0100 |
commit | 161eba50e183ed4ca20f6d8dec19bdc526d2b2b9 (patch) | |
tree | 26b414325f3bd1afee0e71b62238639a9806982e /net/mctp/Kconfig | |
parent | b8aa16541d73994dc18c5e8789124f26189ed656 (diff) |
mctp: Add initial test structure and fragmentation test
This change adds the first kunit test for the mctp subsystem, and an
initial test for the fragmentation path.
We're adding tests under a new net/mctp/test/ directory.
Incorporates a fix for module configs:
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mctp/Kconfig')
-rw-r--r-- | net/mctp/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mctp/Kconfig b/net/mctp/Kconfig index 2cdf3d0a28c9..868c92272cbd 100644 --- a/net/mctp/Kconfig +++ b/net/mctp/Kconfig @@ -11,3 +11,8 @@ menuconfig MCTP This option enables core MCTP support. For communicating with other devices, you'll want to enable a driver for a specific hardware channel. + +config MCTP_TEST + bool "MCTP core tests" if !KUNIT_ALL_TESTS + depends on MCTP=y && KUNIT=y + default KUNIT_ALL_TESTS |