mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 12:25:03 +00:00
8 lines
235 B
Rust
8 lines
235 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use loro_internal::fuzz::crdt_fuzzer::{test_multi_sites, Action, FuzzTarget};
|
|
|
|
fuzz_target!(|actions: Vec<Action>| {
|
|
test_multi_sites(5, vec![FuzzTarget::Map], &mut actions.clone())
|
|
});
|