mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 13:39:12 +00:00
a47cf06712
* feat: new fuzz test * test: add arbtest * fix: remove PROPTEST_FACTOR
8 lines
235 B
Rust
8 lines
235 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use loro_internal::fuzz::crdt_fuzzer::{test_multi_sites, Action, FuzzTarget};
|
|
|
|
fuzz_target!(|actions: Vec<Action>| {
|
|
test_multi_sites(5, vec![FuzzTarget::Map], &mut actions.clone())
|
|
});
|