From af75bdc8df4b4e11106f5dbf0c66a6a1beba0b2a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Riette?= <sebastien.riette@meteo.fr>
Date: Tue, 12 Sep 2023 14:50:10 +0200
Subject: [PATCH] S. Riette 12 Sept 2023: remove echoing of the tests list

---
 tools/check_commit_ial.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/check_commit_ial.sh b/tools/check_commit_ial.sh
index e3c05adf4..fd36cf219 100755
--- a/tools/check_commit_ial.sh
+++ b/tools/check_commit_ial.sh
@@ -577,7 +577,7 @@ if [ $run -ge 1 ]; then
 
   #Run the tests one after the other
   for t in $(echo $tests | sed 's/,/ /g'); do
-    if echo $allowedTests | grep -w $t; then
+    if echo $allowedTests | grep -w $t > /dev/null; then
       cd $HOMEPACK/$name
       mkdir -p conf_tests/$t
       cd conf_tests/$t
@@ -595,7 +595,7 @@ if [ $check -eq 1 ]; then
   message=""
   filestocheck=""
   for t in $(echo $tests | sed 's/,/ /g'); do
-    if echo $allowedTests | grep -w $t; then
+    if echo $allowedTests | grep -w $t > /dev/null; then
       if echo $t | grep 'small' > /dev/null; then
         filestocheck="$filestocheck ${t},conf_tests/$t/ICMSHFPOS+0002:00 ${t},conf_tests/$t/DHFDLFPOS+0002"
       else
-- 
GitLab