Commit 521ed1ce authored by Petr Machata's avatar Petr Machata Committed by David S. Miller

selftests: forwarding: Remove duplicated lib.sh content

commit 25ae948b ("selftests/net: add lib.sh") added net/lib.sh to
contain code shared by tests under net/ and net/forwarding/. However, this
caused issues with selftests from directories other than net/forwarding/,
in particular those under drivers/net/. Those issues were avoided in a
simple way by duplicating some content in commit 2114e833 ("selftests:
forwarding: Avoid failures to source net/lib.sh").

In order to remove the duplicated content, restore the inclusion of
net/lib.sh from net/forwarding/lib.sh but with the following changes:

* net/lib.sh is imported through the net_forwarding_dir path
The original expression "source ../lib.sh" would look for lib.sh in the
directory above the script file's one, which did not work for tests under
drivers/net/.

* net/lib.sh is added to TEST_INCLUDES
Since net/forwarding/lib.sh now sources net/lib.sh, both of those files
must be exported along with tests which source net/forwarding/lib.sh.
Suggested-by: default avatarHangbin Liu <liuhangbin@gmail.com>
Reviewed-by: default avatarHangbin Liu <liuhangbin@gmail.com>
Signed-off-by: default avatarPetr Machata <petrm@nvidia.com>
Signed-off-by: default avatarBenjamin Poirier <bpoirier@nvidia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9f2af915
...@@ -18,6 +18,7 @@ TEST_FILES := \ ...@@ -18,6 +18,7 @@ TEST_FILES := \
bond_topo_3d1c.sh bond_topo_3d1c.sh
TEST_INCLUDES := \ TEST_INCLUDES := \
../../../net/forwarding/lib.sh ../../../net/forwarding/lib.sh \
../../../net/lib.sh
include ../../../lib.mk include ../../../lib.mk
...@@ -26,6 +26,7 @@ TEST_INCLUDES := \ ...@@ -26,6 +26,7 @@ TEST_INCLUDES := \
../../../net/forwarding/local_termination.sh \ ../../../net/forwarding/local_termination.sh \
../../../net/forwarding/no_forwarding.sh \ ../../../net/forwarding/no_forwarding.sh \
../../../net/forwarding/tc_actions.sh \ ../../../net/forwarding/tc_actions.sh \
../../../net/forwarding/tc_common.sh ../../../net/forwarding/tc_common.sh \
../../../net/lib.sh
include ../../../lib.mk include ../../../lib.mk
...@@ -5,6 +5,7 @@ TEST_PROGS := dev_addr_lists.sh ...@@ -5,6 +5,7 @@ TEST_PROGS := dev_addr_lists.sh
TEST_INCLUDES := \ TEST_INCLUDES := \
../bonding/lag_lib.sh \ ../bonding/lag_lib.sh \
../../../net/forwarding/lib.sh ../../../net/forwarding/lib.sh \
../../../net/lib.sh
include ../../../lib.mk include ../../../lib.mk
...@@ -129,4 +129,7 @@ TEST_PROGS_EXTENDED := devlink_lib.sh \ ...@@ -129,4 +129,7 @@ TEST_PROGS_EXTENDED := devlink_lib.sh \
sch_tbf_etsprio.sh \ sch_tbf_etsprio.sh \
tc_common.sh tc_common.sh
TEST_INCLUDES := \
../lib.sh
include ../../lib.mk include ../../lib.mk
...@@ -35,31 +35,7 @@ if [[ -f $net_forwarding_dir/forwarding.config ]]; then ...@@ -35,31 +35,7 @@ if [[ -f $net_forwarding_dir/forwarding.config ]]; then
source "$net_forwarding_dir/forwarding.config" source "$net_forwarding_dir/forwarding.config"
fi fi
# Kselftest framework requirement - SKIP code is 4. source "$net_forwarding_dir/../lib.sh"
ksft_skip=4
busywait()
{
local timeout=$1; shift
local start_time="$(date -u +%s%3N)"
while true
do
local out
out=$("$@")
local ret=$?
if ((!ret)); then
echo -n "$out"
return 0
fi
local current_time="$(date -u +%s%3N)"
if ((current_time - start_time > timeout)); then
echo -n "$out"
return 1
fi
done
}
############################################################################## ##############################################################################
# Sanity checks # Sanity checks
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment