summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYu Kuai <yukuai3@huawei.com>2024-05-09 03:10:59 +0200
committerMariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>2024-05-10 10:05:32 +0200
commita0174749426f49a04f11ae0e728cb0a681bfa465 (patch)
tree99a2982b525046b7358eee84de5bc3416a28da83 /tests
parentMakefile: Move -pie to LDFLAGS (diff)
downloadmdadm-a0174749426f49a04f11ae0e728cb0a681bfa465.tar.xz
mdadm-a0174749426f49a04f11ae0e728cb0a681bfa465.zip
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 <yukuai3@huawei.com> Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/23rdev-lifetime2
1 files changed, 1 insertions, 1 deletions
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
}