]> git.dujemihanovic.xyz Git - linux.git/commitdiff
selftests: mptcp: include lib.sh file
authorMatthieu Baerts (NGI0) <matttbe@kernel.org>
Tue, 10 Sep 2024 19:06:37 +0000 (21:06 +0200)
committerJakub Kicinski <kuba@kernel.org>
Wed, 11 Sep 2024 22:18:19 +0000 (15:18 -0700)
The lib.sh file from the parent directory is used by the MPTCP selftests
and it needs to be present when running the tests.

This file then needs to be listed in the Makefile to be included when
exporting or installing the tests, e.g. with:

  make -C tools/testing/selftests \
          TARGETS=net/mptcp \
          install INSTALL_PATH=$KSFT_INSTALL_PATH

  cd $KSFT_INSTALL_PATH
  ./run_kselftest.sh -c net/mptcp

Fixes: f265d3119a29 ("selftests: mptcp: lib: use setup/cleanup_ns helpers")
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://patch.msgid.link/20240910-net-selftests-mptcp-fix-install-v1-2-8f124aa9156d@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/selftests/net/mptcp/Makefile

index 7b936a92685949199fae2a31451a5f74c288b627..68924053a1e6447ee8b6f0ba4de5c8a0d0dfe8ff 100644 (file)
@@ -11,6 +11,8 @@ TEST_GEN_FILES = mptcp_connect pm_nl_ctl mptcp_sockopt mptcp_inq
 
 TEST_FILES := mptcp_lib.sh settings
 
+TEST_INCLUDES := ../lib.sh
+
 EXTRA_CLEAN := *.pcap
 
 include ../../lib.mk