The ksft CI runtime needs an rds specific config file to build a minimal kernel with the right options enabled. This patch adds an rds selftest config containing the required CONFIG_RDS* and CONFIG_NET_* options.
Signed-off-by: Allison Henderson <[email protected]> --- tools/testing/selftests/net/rds/Makefile | 1 + tools/testing/selftests/net/rds/config | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/tools/testing/selftests/net/rds/Makefile b/tools/testing/selftests/net/rds/Makefile index fe363be8e358..a3462dadb47c 100644 --- a/tools/testing/selftests/net/rds/Makefile +++ b/tools/testing/selftests/net/rds/Makefile @@ -6,6 +6,7 @@ all: TEST_PROGS := run.sh TEST_FILES := \ + config \ include.sh \ settings \ test.py \ diff --git a/tools/testing/selftests/net/rds/config b/tools/testing/selftests/net/rds/config new file mode 100644 index 000000000000..97db7ecb892a --- /dev/null +++ b/tools/testing/selftests/net/rds/config @@ -0,0 +1,5 @@ +CONFIG_NET_NS=y +CONFIG_NET_SCH_NETEM=y +CONFIG_RDS=y +CONFIG_RDS_TCP=y +CONFIG_VETH=y -- 2.43.0
