projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52d94c1
)
selftests/net: reduce xfrm_policy test time
author
Hangbin Liu
<liuhangbin@gmail.com>
Tue, 14 May 2024 09:52:27 +0000
(17:52 +0800)
committer
Jakub Kicinski
<kuba@kernel.org>
Fri, 17 May 2024 02:30:12 +0000
(19:30 -0700)
The check_random_order test add/get plenty of xfrm rules, which consume
a lot time on debug kernel and always TIMEOUT. Let's reduce the test
loop and see if it works.
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Link:
https://lore.kernel.org/r/20240514095227.2597730-1-liuhangbin@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/selftests/net/xfrm_policy.sh
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/net/xfrm_policy.sh
b/tools/testing/selftests/net/xfrm_policy.sh
index 45778953064563c92cf82b737e5f5aa16e841c06..3eeeeffb4005b732793266c0ed4ba0472bce7e21 100755
(executable)
--- a/
tools/testing/selftests/net/xfrm_policy.sh
+++ b/
tools/testing/selftests/net/xfrm_policy.sh
@@
-293,7
+293,7
@@
check_random_order()
local ns=$1
local log=$2
- for i in $(seq
10
0); do
+ for i in $(seq
5
0); do
ip -net $ns xfrm policy flush
for j in $(seq 0 16 255 | sort -R); do
ip -net $ns xfrm policy add dst $j.0.0.0/24 dir out priority 10 action allow
@@
-306,7
+306,7
@@
check_random_order()
done
done
- for i in $(seq
10
0); do
+ for i in $(seq
5
0); do
ip -net $ns xfrm policy flush
for j in $(seq 0 16 255 | sort -R); do
local addr=$(printf "e000:0000:%02x00::/56" $j)