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