From 2121a44ce7feaf1821b0b2a51a02b9ab3d93e56f Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Fri, 26 Jun 2026 09:27:37 -0700 Subject: [PATCH] Increase fuzz timeout to 60s Signed-off-by: Maksym Pavlenko --- script/go-test-fuzz.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/go-test-fuzz.sh b/script/go-test-fuzz.sh index 10b967e44c..433fdf38c9 100755 --- a/script/go-test-fuzz.sh +++ b/script/go-test-fuzz.sh @@ -14,14 +14,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Running Go 1.18's fuzzing for 30 seconds each. While this would be too +# Running Go 1.18's fuzzing for 60 seconds each. While this would be too # short to actually find issues, we want to make sure that these fuzzing # tests are not fundamentally broken. set -euo pipefail set -x -fuzztime=30s +fuzztime=60s # keep the filename and Fuzz function name so we can run every fuzz test # in a package separately (`go test -fuzz` only supports single fuzz function) pkgs=$(git grep 'func Fuzz.*testing\.F' | grep -o '.*testing\.F)' | grep -v -E "vendor" | sort | uniq)