]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
selftests: mlxsw: ethtool_lanes: Source ethtool lib from correct path
authorIdo Schimmel <idosch@nvidia.com>
Tue, 20 Aug 2024 10:53:47 +0000 (12:53 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 22 Aug 2024 00:20:09 +0000 (17:20 -0700)
Source the ethtool library from the correct path and avoid the following
error:

./ethtool_lanes.sh: line 14: ./../../../net/forwarding/ethtool_lib.sh: No such file or directory

Fixes: 40d269c000bd ("selftests: forwarding: Move several selftests")
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/2112faff02e536e1ac14beb4c2be09c9574b90ae.1724150067.git.petrm@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/selftests/drivers/net/mlxsw/ethtool_lanes.sh

index 877cd6df94a10c2bdb69ea6f20b381e01a47b68f..fe905a7f34b3c6629fc4909b093aeaa18b0d1b00 100755 (executable)
@@ -2,6 +2,7 @@
 # SPDX-License-Identifier: GPL-2.0
 
 lib_dir=$(dirname $0)/../../../net/forwarding
+ethtool_lib_dir=$(dirname $0)/../hw
 
 ALL_TESTS="
        autoneg
@@ -11,7 +12,7 @@ ALL_TESTS="
 NUM_NETIFS=2
 : ${TIMEOUT:=30000} # ms
 source $lib_dir/lib.sh
-source $lib_dir/ethtool_lib.sh
+source $ethtool_lib_dir/ethtool_lib.sh
 
 setup_prepare()
 {