Add exit status to notification time calculation 49/19649/1
authorCarlos Goncalves <carlos.goncalves@neclab.eu>
Fri, 26 Aug 2016 14:00:29 +0000 (14:00 +0000)
committerCarlos Goncalves <carlos.goncalves@neclab.eu>
Fri, 26 Aug 2016 14:02:06 +0000 (14:02 +0000)
Change-Id: Ib85571c3939ecb5136eba2c5de8d4b72f2d0659e
Signed-off-by: Carlos Goncalves <carlos.goncalves@neclab.eu>
tests/run.sh

index 292a7ce..ee96da9 100755 (executable)
@@ -484,7 +484,11 @@ calculate_notification_time() {
         exit 1
     fi
     echo "$notified $detected" | \
-        awk '{d = $1 - $2; if (d < 1 && d > 0) print d " OK"; else print d " NG"}'
+        awk '{
+            d = $1 - $2;
+            if (d < 1 && d > 0) { print d " OK"; exit 0 }
+            else { print d " NG"; exit 1 }
+        }'
 }
 
 check_host_status() {