From d65c4a25a33ea02954511af83d7c3ce58d6d0630 Mon Sep 17 00:00:00 2001
From: Rohit Gupta <rohit.gupta@eurecom.fr>
Date: Wed, 24 Aug 2016 00:01:14 +0200
Subject: [PATCH] bugfix for script to kill old programs

---
 .../autotests/tools/remove_old_programs.bash        | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/cmake_targets/autotests/tools/remove_old_programs.bash b/cmake_targets/autotests/tools/remove_old_programs.bash
index d494847b41..3352dc7053 100755
--- a/cmake_targets/autotests/tools/remove_old_programs.bash
+++ b/cmake_targets/autotests/tools/remove_old_programs.bash
@@ -3,12 +3,19 @@
 #$1 programs to be killed and checked
 echo "removing old programs..."
 echo "args = $1"
+echo "script name = $0"
+filename=$(basename "$0")
 echo "programs to be killed"
-ps -aux |grep -E -i $1
+echo "bash PID = $$"
+pid='$$'
+#we need to remove current program and grip as we kill ourselves otherwise :)
+var=`ps -aux |grep -E -i $1 | awk '{print $2}'`
 
-ps -aux |grep -E -i $1| awk '{print $2}' | sudo xargs kill -9 
+echo $var
+
+echo "$var" | sed 's/'$$'/ /' | sudo xargs kill -9
 
-var=`ps -aux |grep -E -i $1`
+var=`ps -aux |grep -E -i $1| grep -E -v '$filename|grep|$$'`
 echo $var
 if [ -n "$var" ]; then echo 'Match found'; else echo 'Match not found' ;fi 
 
-- 
GitLab