mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-02 19:13:57 +00:00
9 lines
235 B
Rust
9 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())
|
||
|
});
|