[PATCH] xfstests: kill in 131 needs to be quiet

Dave Chinner david at fromorbit.com
Tue Jan 19 23:58:46 CST 2010


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 <david at fromorbit.com>
---
 131 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/131 b/131
index 9be0a14..783765e 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
 }
 
-- 
1.6.5




More information about the xfs mailing list