From: Yu Kuai Date: Thu, 9 May 2024 01:10:59 +0000 (+0800) Subject: tests/23rdev-lifetime: fix a typo X-Git-Tag: mdadm-4.4~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0174749426f49a04f11ae0e728cb0a681bfa465;p=thirdparty%2Fmdadm.git tests/23rdev-lifetime: fix a typo "pill" was wrong, while it should be "kill", test will still pass while test thread will not be cleaned up. Signed-off-by: Yu Kuai Signed-off-by: Mariusz Tkaczyk --- diff --git a/tests/23rdev-lifetime b/tests/23rdev-lifetime index 1750b0db..03b61de4 100644 --- a/tests/23rdev-lifetime +++ b/tests/23rdev-lifetime @@ -4,7 +4,7 @@ pid="" runtime=2 clean_up_test() { - pill -9 $pid + kill -9 $pid echo clear > /sys/block/md0/md/array_state }