mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
14 lines
290 B
Rust
14 lines
290 B
Rust
use bolero::check;
|
|
|
|
use deltachat::fuzzing::simplify;
|
|
|
|
fn main() {
|
|
check!().for_each(|data: &[u8]| match String::from_utf8(data.to_vec()) {
|
|
Ok(input) => {
|
|
simplify(input.clone(), true);
|
|
simplify(input, false);
|
|
}
|
|
Err(_err) => {}
|
|
});
|
|
}
|