summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh
diff options
context:
space:
mode:
authorIdo Schimmel <idosch@nvidia.com>2024-03-04 12:56:08 +0300
committerJakub Kicinski <kuba@kernel.org>2024-03-05 20:18:04 +0300
commit748d27447daa3f2bdf519f2a97647ff69fd1b70b (patch)
treef9a3eccb342d57f6f4f69981b3c456863ecc7c49 /tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh
parent7b2d64f93319e0d03c1b68ecfdccd5d168cb5c31 (diff)
downloadlinux-748d27447daa3f2bdf519f2a97647ff69fd1b70b.tar.xz
selftests: forwarding: Parametrize mausezahn delay
The various multipath tests use mausezahn to generate different flows and check how they are distributed between the available nexthops. The tool is currently invoked with an hard coded transmission delay of 1 ms. This is unnecessary when the tests are run with veth pairs and needlessly prolongs the tests. Parametrize this delay and default it to 0 us. It can be overridden using the forwarding.config file. On my system, this reduces the run time of router_multipath.sh by 93%. Signed-off-by: Ido Schimmel <idosch@nvidia.com> Link: https://lore.kernel.org/r/20240304095612.462900-3-idosch@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh')
-rwxr-xr-xtools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh b/tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh
index 2085111bcd67..370f9925302d 100755
--- a/tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh
+++ b/tools/testing/selftests/net/forwarding/gre_multipath_nh_res.sh
@@ -247,7 +247,7 @@ multipath4_test()
ip vrf exec v$h1 \
$MZ $h1 -q -p 64 -A 192.0.2.1 -B 192.0.2.18 \
- -d 1msec -t udp "sp=1024,dp=0-32768"
+ -d $MZ_DELAY -t udp "sp=1024,dp=0-32768"
local t1_111=$(tc_rule_stats_get $ul2 111 ingress)
local t1_222=$(tc_rule_stats_get $ul2 222 ingress)
@@ -275,7 +275,7 @@ multipath6_test()
ip vrf exec v$h1 \
$MZ $h1 -6 -q -p 64 -A 2001:db8:1::1 -B 2001:db8:2::2 \
- -d 1msec -t udp "sp=1024,dp=0-32768"
+ -d $MZ_DELAY -t udp "sp=1024,dp=0-32768"
local t1_111=$(tc_rule_stats_get $ul2 111 ingress)
local t1_222=$(tc_rule_stats_get $ul2 222 ingress)