ci(fuzz): Allow zopfli_buffer_size to be 3 * power of 2

This commit is contained in:
Chris Hennick 2024-06-03 20:23:46 -07:00
parent 8f32bb91b4
commit ad218a6c9c
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -287,7 +287,11 @@ impl<'a> arbitrary::Arbitrary<'a> for FileOptions<'a, ExtendedFileOptions> {
};
#[cfg(feature = "deflate-zopfli")]
if options.compression_method == CompressionMethod::Deflated && bool::arbitrary(u)? {
options.zopfli_buffer_size = Some(1 << u.int_in_range(9..=30)?);
options.zopfli_buffer_size = Some(1 << u.int_in_range(8..=29)? * if bool::arbitrary(u) {
2
} else {
3
});
}
u.arbitrary_loop(Some(0), Some((u16::MAX / 4) as u32), |u| {
options