From e105680411850eefd008b226eb31e5354b967808 Mon Sep 17 00:00:00 2001 From: Frederick Dilger Date: Mon, 24 Jun 2024 15:10:12 -0600 Subject: [PATCH] LU-17968 tests: sanity-hsm 35 slow VM timeout fix Test 35 in sanity-hsm.sh has been failing intermittently since 2021-07-25, with a rate around 1/1300 runs. This is likely caused by occasional slow VM behaviour so the timeout has been increased from 1s to 2s to hopefully avoid future occurences while maintaining test functionality. Test-Patametets: trivial testlist=sanity-hsm Test-Parameters: testlist=sanity-hsm env=ONLY=35,ONLY_REPEAT=100 Signed-off-by: Frederick Dilger Change-Id: I4ed42e79d87cd8d73e373e074fa63cf6226d4471 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/55516 Tested-by: Maloo Tested-by: jenkins Reviewed-by: Etienne AUJAMES Reviewed-by: Oleg Drokin Reviewed-by: Andreas Dilger --- lustre/tests/sanity-hsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/sanity-hsm.sh b/lustre/tests/sanity-hsm.sh index 1fb02c7..12de2d5 100755 --- a/lustre/tests/sanity-hsm.sh +++ b/lustre/tests/sanity-hsm.sh @@ -2831,7 +2831,7 @@ test_35() { wait_request_state $fid RESTORE STARTED # mv must not block during restore - timeout --signal=KILL 1 mv "$f1" "$f" || error "mv $f1 $f failed" + timeout --signal=KILL 2 mv "$f1" "$f" || error "mv $f1 $f failed" copytool_continue wait_request_state $fid RESTORE SUCCEED -- 1.8.3.1