loro/crates/loro-internal/fuzz/fuzz_targets/text.rs

6 lines
182 B
Rust
Raw Normal View History

2022-10-22 15:33:25 +00:00
#![no_main]
use libfuzzer_sys::fuzz_target;
use loro_internal::fuzz::{test_multi_sites, Action};
2022-10-22 15:33:25 +00:00
2022-11-15 07:54:29 +00:00
fuzz_target!(|actions: Vec<Action>| { test_multi_sites(8, &mut actions.clone()) });