From bad5ccd6c39908fd9a0861ec234cb54d26d6b65e Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Sun, 11 Jan 2026 22:23:38 +0200 Subject: [PATCH] fix(fuzz): skip time parsing errors Add "parsing time .*" pattern to skip list to handle Go time.Parse errors like "parsing time ... extra text ..." that are expected runtime errors, not bugs. Signed-off-by: Ville Vesilehto --- test/fuzz/fuzz_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/fuzz/fuzz_test.go b/test/fuzz/fuzz_test.go index c7583b7b..1be7b11d 100644 --- a/test/fuzz/fuzz_test.go +++ b/test/fuzz/fuzz_test.go @@ -47,6 +47,7 @@ func FuzzExpr(f *testing.F) { regexp.MustCompile(`strings: negative Repeat count`), regexp.MustCompile(`strings: illegal bytes to escape`), regexp.MustCompile(`invalid date .*`), + regexp.MustCompile(`parsing time .*`), regexp.MustCompile(`cannot parse .* as .*`), regexp.MustCompile(`operator "in" not defined on .*`), regexp.MustCompile(`cannot sum .*`),