diff --git a/cmake_targets/autotests/tools/remove_old_programs.bash b/cmake_targets/autotests/tools/remove_old_programs.bash
index eca6cf4c98a059f4f8494ce3e8ca4a5fa712d26a..d494847b414e93d386a9bd6f3862f4baa9ef03c5 100755
--- a/cmake_targets/autotests/tools/remove_old_programs.bash
+++ b/cmake_targets/autotests/tools/remove_old_programs.bash
@@ -3,6 +3,9 @@
 #$1 programs to be killed and checked
 echo "removing old programs..."
 echo "args = $1"
+echo "programs to be killed"
+ps -aux |grep -E -i $1
+
 ps -aux |grep -E -i $1| awk '{print $2}' | sudo xargs kill -9 
 
 var=`ps -aux |grep -E -i $1`