mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 21:43:59 +00:00
6 lines
188 B
Rust
6 lines
188 B
Rust
|
#![no_main]
|
||
|
use libfuzzer_sys::fuzz_target;
|
||
|
use loro_internal::fuzz::tree::{test_multi_sites, Action};
|
||
|
|
||
|
fuzz_target!(|actions: Vec<Action>| { test_multi_sites(5, &mut actions.clone()) });
|