loro/crates/delta/fuzz/fuzz_targets/ot.rs
Zixuan Chen 321e0e72a4
Undo (#361)
https://github.com/loro-dev/loro/pull/361

---------

Co-authored-by: Leon Zhao <leeeon233@gmail.com>
2024-05-21 06:14:49 +08:00

6 lines
120 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
use loro_delta_fuzz::{run, Op};
fuzz_target!(|ops: Vec<Op>| run(ops, 5));