Skip to content
Snippets Groups Projects
Commit af75bdc8 authored by RIETTE Sébastien's avatar RIETTE Sébastien
Browse files

S. Riette 12 Sept 2023: remove echoing of the tests list

parent 15ad8c0f
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment