Commit 663ad7df authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): typo on bash variable setting

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 94f8e5b2
...@@ -1932,11 +1932,11 @@ function run_test_on_vm { ...@@ -1932,11 +1932,11 @@ function run_test_on_vm {
echo "SA test NOT OK" echo "SA test NOT OK"
echo "try_cnt = " $try_cnt echo "try_cnt = " $try_cnt
try_cnt=$((try_cnt+1)) try_cnt=$((try_cnt+1))
SA_106PRB_STATUS = -1 SA_106PRB_STATUS=-1
else else
echo "SA test OK" echo "SA test OK"
try_cnt=$((try_cnt+10)) try_cnt=$((try_cnt+10))
SA_106PRB_STATUS = 0 SA_106PRB_STATUS=0
fi fi
done done
########### end SA test ########### end SA test
...@@ -2015,11 +2015,11 @@ function run_test_on_vm { ...@@ -2015,11 +2015,11 @@ function run_test_on_vm {
echo "SA test NOT OK" echo "SA test NOT OK"
echo "try_cnt = " $try_cnt echo "try_cnt = " $try_cnt
try_cnt=$((try_cnt+1)) try_cnt=$((try_cnt+1))
SA_24PRB_STATUS = -1 SA_24PRB_STATUS=-1
else else
echo "SA test OK" echo "SA test OK"
try_cnt=$((try_cnt+10)) try_cnt=$((try_cnt+10))
SA_24PRB_STATUS = 0 SA_24PRB_STATUS=0
fi fi
done done
########### end SA test ########### end SA test
......
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