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
Branches
Tags
No related merge requests found
...@@ -577,7 +577,7 @@ if [ $run -ge 1 ]; then ...@@ -577,7 +577,7 @@ if [ $run -ge 1 ]; then
#Run the tests one after the other #Run the tests one after the other
for t in $(echo $tests | sed 's/,/ /g'); do 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 cd $HOMEPACK/$name
mkdir -p conf_tests/$t mkdir -p conf_tests/$t
cd conf_tests/$t cd conf_tests/$t
...@@ -595,7 +595,7 @@ if [ $check -eq 1 ]; then ...@@ -595,7 +595,7 @@ if [ $check -eq 1 ]; then
message="" message=""
filestocheck="" filestocheck=""
for t in $(echo $tests | sed 's/,/ /g'); do 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 if echo $t | grep 'small' > /dev/null; then
filestocheck="$filestocheck ${t},conf_tests/$t/ICMSHFPOS+0002:00 ${t},conf_tests/$t/DHFDLFPOS+0002" filestocheck="$filestocheck ${t},conf_tests/$t/ICMSHFPOS+0002:00 ${t},conf_tests/$t/DHFDLFPOS+0002"
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment