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