mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 05:24:51 +00:00
321e0e72a4
https://github.com/loro-dev/loro/pull/361 --------- Co-authored-by: Leon Zhao <leeeon233@gmail.com>
6 lines
120 B
Rust
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));
|