From 90d44ad5b00fc18ae4702e11250a422cf165e2ae Mon Sep 17 00:00:00 2001 From: Kevin Zhao Date: Fri, 28 Oct 2022 14:55:52 +0800 Subject: [PATCH] LU-16275 tests: Modify killall of replay-dual 25 The in-tree test will have rename the multiop to lt-multiop, which will not be killed with killall. So it's better to add regex to killall for kill all the process with multiop and lt-multiop Test-Parameters: trivial testlist=replay-dual env=ONLY=25 Signed-off-by: Kevin Zhao Change-Id: Ic9b064a6bb0d944eedb5dc019ba5d4d05c98eeae Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/48977 Reviewed-by: Oleg Drokin Reviewed-by: Andreas Dilger Reviewed-by: Vitaliy Kuznetsov Tested-by: jenkins Tested-by: Maloo --- lustre/tests/replay-dual.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/replay-dual.sh b/lustre/tests/replay-dual.sh index 3202973..707c7dd 100755 --- a/lustre/tests/replay-dual.sh +++ b/lustre/tests/replay-dual.sh @@ -933,7 +933,7 @@ test_25() { # multiop does not finish because CP AST is skipped; # it is ok to kill it in the test, because CP AST is already re-sent # and it does not hung forever in real life - killall multiop + killall -r "(multiop)$" wait } run_test 25 "replay|resend" -- 1.8.3.1