From e33a7bb1b8c2c40958b0ce5c0a456ff1a2b8af54 Mon Sep 17 00:00:00 2001 From: Erik Burton Date: Thu, 7 Nov 2024 17:01:01 -0800 Subject: [PATCH] lower race test timeout further --- tools/bin/go_core_fuzz | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/go_core_fuzz b/tools/bin/go_core_fuzz index d5bc7268106..49aaf33b65e 100755 --- a/tools/bin/go_core_fuzz +++ b/tools/bin/go_core_fuzz @@ -4,7 +4,7 @@ set +e SCRIPT_PATH=`dirname "$0"`; SCRIPT_PATH=`eval "cd \"$SCRIPT_PATH\" && pwd"` OUTPUT_FILE=${OUTPUT_FILE:-"./output.txt"} -FUZZ_TIMEOUT_MINUTES=${FUZZ_TIMEOUT_MINUTES:-"4"} +FUZZ_TIMEOUT_MINUTES=${FUZZ_TIMEOUT_MINUTES:-"3"} TOTAL_SECONDS=$((FUZZ_TIMEOUT_MINUTES * 60)) if (( TOTAL_SECONDS >= 120 )); then