mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-03 03:16:53 +00:00
6 lines
192 B
Rust
6 lines
192 B
Rust
|
#![no_main]
|
||
|
use libfuzzer_sys::fuzz_target;
|
||
|
use loro_internal::fuzz::richtext::{test_multi_sites, Action};
|
||
|
|
||
|
fuzz_target!(|actions: Vec<Action>| { test_multi_sites(5, &mut actions.clone()) });
|