summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/run.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh
index 292a7ce7..ee96da9d 100755
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -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() {