updates to node complete test, add io_py_result_processor.py lib
diff --git a/scripts/run_test.sh b/scripts/run_test.sh
index 94612ba..fefc5d7 100644
--- a/scripts/run_test.sh
+++ b/scripts/run_test.sh
@@ -34,7 +34,7 @@
# note : function will works properly only when image dame is single string without spaces that can brake awk
function wait_image_active() {
image_state="none"
- image_name=$IMAGE_NAME
+ image_name="$IMAGE_NAME"
counter=0
while [ ! $image_state eq "active" ] ; do
@@ -43,7 +43,7 @@
echo $image_state
counter=$((counter + 1))
- if [ $counter -eq $TIMEOUT ]
+ if [ "$counter" -eq "$TIMEOUT" ]
then
echo "Time limit exceed"
break