Commit 91d39446 by Miodrag Milanovic

skip instead of break

parent daa1a661
...@@ -10,7 +10,7 @@ for x in *; do ...@@ -10,7 +10,7 @@ for x in *; do
if [ -f "$x/heavy_test" ]; then if [ -f "$x/heavy_test" ]; then
if [ -z "$ENABLE_HEAVY_TESTS" ] || [ "$ENABLE_HEAVY_TESTS" -ne "1" ]; then if [ -z "$ENABLE_HEAVY_TESTS" ] || [ "$ENABLE_HEAVY_TESTS" -ne "1" ]; then
echo " @echo 'Skipping heavy test $x..'" echo " @echo 'Skipping heavy test $x..'"
break continue
fi fi
echo " @echo 'Running heavy test $x..'" echo " @echo 'Running heavy test $x..'"
else else
...@@ -27,7 +27,7 @@ for x in *; do ...@@ -27,7 +27,7 @@ for x in *; do
if [ -f "$x/heavy_test" ]; then if [ -f "$x/heavy_test" ]; then
if [ -z "$ENABLE_HEAVY_TESTS" ] || [ "$ENABLE_HEAVY_TESTS" -ne "1" ]; then if [ -z "$ENABLE_HEAVY_TESTS" ] || [ "$ENABLE_HEAVY_TESTS" -ne "1" ]; then
echo " @echo 'Skipping heavy test $x..'" echo " @echo 'Skipping heavy test $x..'"
break continue
fi fi
echo " @echo 'Running heavy test $x..'" echo " @echo 'Running heavy test $x..'"
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment