Merge pull request #205 from zip-rs/fuzz-jemalloc

test(fuzz): Use jemalloc for performance reasons
This commit is contained in:
Chris Hennick 2024-07-05 00:13:44 +00:00 committed by GitHub
commit cbdaa704ac
Signed by: DevComp
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 0 deletions

View file

@ -12,6 +12,7 @@ cargo-fuzz = true
libfuzzer-sys = "0.4"
arbitrary = { version = "1.3.2", features = ["derive"] }
replace_with = "0.1.7"
tikv-jemallocator = "0.5.4"
[dependencies.zip]
path = ".."

View file

@ -1,10 +1,15 @@
#![no_main]
use libfuzzer_sys::fuzz_target;
use std::io::{Read, Seek, SeekFrom};
use tikv_jemallocator::Jemalloc;
use zip::read::read_zipfile_from_stream;
const MAX_BYTES_TO_READ: u64 = 1 << 24;
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
fn decompress_all(data: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
let reader = std::io::Cursor::new(data);
let mut zip = zip::ZipArchive::new(reader)?;

View file

@ -7,8 +7,12 @@ use libfuzzer_sys::fuzz_target;
use replace_with::replace_with_or_abort;
use std::io::{Cursor, Read, Seek, Write};
use std::path::PathBuf;
use tikv_jemallocator::Jemalloc;
use zip::unstable::path_to_string;
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
#[derive(Arbitrary, Clone)]
pub enum BasicFileOperation<'k> {
WriteNormalFile {