From 76d3f120e2c843dae3342cd07846454703cecbfb Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Thu, 21 Jan 2010 08:54:38 +1100 Subject: [PATCH] xfstests: kill in 131 needs to be quiet If the kill fails because the processes have already terminates, the output from kill (no such process) will cause the test to fail. Make sure kill doesn't output anything. Signed-off-by: Dave Chinner Reviewed-by: Christoph Hellwig --- 131 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/131 b/131 index 9be0a14c..783765ed 100755 --- a/131 +++ b/131 @@ -34,8 +34,8 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _cleanup() { - kill $locktest_pid2 - kill $locktest_pid1 + kill $locktest_pid2 2&>1 /dev/null + kill $locktest_pid1 2&>1 /dev/null _cleanup_testdir }