From: Alexander Boyko Date: Tue, 25 Feb 2025 10:38:34 +0000 (+0100) Subject: LU-18116 tests: replay-single test_201 timeout X-Git-Tag: 2.16.56~20 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=bc222d03dc656c5bac45e39a095dda107d4bf6b1;p=fs%2Flustre-release.git LU-18116 tests: replay-single test_201 timeout 19s is not enough for some system to finish MDT1 umount. Increasing it to 20s + OSTCOUNT seconds. HPE-bug-id: LUS-12689 Test-Parameters: testlist=replay-single Fixes: ffedcbae21f7 ("LU-17809 osp: make disconnect asynchronous") Signed-off-by:Alexander Boyko Change-Id: I900ce107ceb664530bc2165685ba7b88cbd46807 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/58203 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Mikhail Pershin Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/replay-single.sh b/lustre/tests/replay-single.sh index 68691c6..c79fd22 100755 --- a/lustre/tests/replay-single.sh +++ b/lustre/tests/replay-single.sh @@ -5345,8 +5345,9 @@ test_201() { error "mount mds2 failed" echo "Umount took $duration seconds" - #Valid timeout is 8 for MDTs + 8 for OSTs + 4 some for other umount - (( duration < 20 )) || error "Cascading timeouts on disconnect" + # Valid timeout is 8s for MDT0000-lwp-MDT0001 + # + 8s for osp devices MDTs/OSTs + (4s + OSTCOUNTs) for other umount + (( duration <= (20 + OSTCOUNT) )) || error "Cascading timeouts on disconnect" } run_test 201 "MDT umount cascading disconnects timeouts"