From 939aca18e66514ca0727c309f8df8c510a0e2fc1 Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Thu, 16 Nov 2023 22:31:25 +0100 Subject: [PATCH] fuzz: ignore sun(any) runtime errors Fixes #464 --- 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 64467a65..03d29e3b 100644 --- a/test/fuzz/fuzz_test.go +++ b/test/fuzz/fuzz_test.go @@ -48,6 +48,7 @@ func FuzzExpr(f *testing.F) { regexp.MustCompile(`invalid date .*`), regexp.MustCompile(`cannot parse .* as .*`), regexp.MustCompile(`operator "in" not defined on .*`), + regexp.MustCompile(`cannot sum bool`), } env := NewEnv()