mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 12:25:03 +00:00
9 lines
214 B
Rust
9 lines
214 B
Rust
|
#![no_main]
|
||
|
|
||
|
use bench_utils::{draw::DrawAction, Action};
|
||
|
use libfuzzer_sys::fuzz_target;
|
||
|
|
||
|
fuzz_target!(|actions: Vec<Action<DrawAction>>| {
|
||
|
examples::draw::run_actions_fuzz_in_async_mode(5, 100, &actions)
|
||
|
});
|