From 2709b55b0e5de517fa502c91caebb370d8ec3d94 Mon Sep 17 00:00:00 2001 From: Osma Suominen Date: Thu, 10 Aug 2023 16:33:09 +0300 Subject: [PATCH] Increase maximum startup time threshold (0.3 -> 0.4 s) --- tests/time-startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/time-startup.sh b/tests/time-startup.sh index dabb56134..9204c4cf2 100755 --- a/tests/time-startup.sh +++ b/tests/time-startup.sh @@ -18,7 +18,7 @@ average_startup_time=$(echo "scale=3; ($startup_time1 + $startup_time2 + $startu echo "Average Startup time: $average_startup_time seconds" # Set the threshold for acceptable startup time in seconds -threshold=0.300 +threshold=0.400 # Compare the average startup time with the threshold if (( $(echo "$average_startup_time > $threshold" | bc -l) )); then