mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-30 03:03:45 +00:00
Initialise fuzzing for ssz
This commit is contained in:
7
eth2/utils/ssz/fuzz/fuzz_targets/fuzz_target_1.rs
Normal file
7
eth2/utils/ssz/fuzz/fuzz_targets/fuzz_target_1.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
#![no_main]
|
||||
#[macro_use] extern crate libfuzzer_sys;
|
||||
extern crate ssz;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
// fuzzed code goes here
|
||||
});
|
||||
Reference in New Issue
Block a user