From 91cd0e3aaa4e69b3571272b1688cba9bead1a294 Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Wed, 1 Apr 2026 10:40:18 -0300 Subject: [PATCH] fuzz: remove GetDescriptorChecksum from string harness This function is already strongly fuzzed by other harness. E.g: descriptor_parse calls it several times during parsing and serialization. Also, calling GetDescriptorChecksum with a string of length 32 is not effective to exercise it. --- src/test/fuzz/string.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/fuzz/string.cpp b/src/test/fuzz/string.cpp index d3156336973..b36ac297ad4 100644 --- a/src/test/fuzz/string.cpp +++ b/src/test/fuzz/string.cpp @@ -63,7 +63,6 @@ FUZZ_TARGET(string) const auto width{fuzzed_data_provider.ConsumeIntegralInRange(1, 1000)}; (void)FormatParagraph(random_string_1, width, fuzzed_data_provider.ConsumeIntegralInRange(0, width)); (void)FormatSubVersion(random_string_1, fuzzed_data_provider.ConsumeIntegral(), random_string_vector); - (void)GetDescriptorChecksum(random_string_1); (void)HelpExampleCli(random_string_1, random_string_2); (void)HelpExampleRpc(random_string_1, random_string_2); (void)HelpMessageGroup(random_string_1);