loro/crates/fuzz/fuzz/fuzz_targets/tree.rs
Leon Zhao fffd49b5fa
Use fractional index to order the children of the tree (#298)
* feat: fractional index

---------

Co-authored-by: Zixuan Chen <remch183@outlook.com>
2024-05-07 14:01:13 +08:00

9 lines
209 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
use fuzz::{test_multi_sites, Action, FuzzTarget};
fuzz_target!(|actions: Vec<Action>| {
test_multi_sites(5, vec![FuzzTarget::Tree], &mut actions.clone())
});