mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-11 14:53:12 +00:00
9 lines
209 B
Rust
9 lines
209 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
use fuzz::{test_multi_sites, Action, FuzzTarget};
|
|
|
|
fuzz_target!(|actions: Vec<Action>| {
|
|
test_multi_sites(5, vec![FuzzTarget::Tree], &mut actions.clone())
|
|
});
|