mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-09 15:18:03 +02:00
Merge bitcoin/bitcoin#34985: fuzz: remove GetDescriptorChecksum from string harness
91cd0e3aaafuzz: remove GetDescriptorChecksum from string harness (Bruno Garcia) Pull request description: 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. ACKs for top commit: frankomosh: utACK91cd0e3aaasipa: ACK91cd0e3aaa. I don't think this tests anything useful. Tree-SHA512: ac5e5c3f04669d4f7c24c25390565b02350ac2d4b1044aa1b3b9b83b3a70e57b3a109bd8d58298e722ce97d4a76efc62f11b31147a810a65db7ac592606acc3c
This commit is contained in:
@@ -64,7 +64,6 @@ FUZZ_TARGET(string)
|
||||
const auto width{fuzzed_data_provider.ConsumeIntegralInRange<size_t>(1, 1000)};
|
||||
(void)FormatParagraph(random_string_1, width, fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, width));
|
||||
(void)FormatSubVersion(random_string_1, fuzzed_data_provider.ConsumeIntegral<int>(), 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);
|
||||
|
||||
Reference in New Issue
Block a user