Initialise fuzzing for ssz

This commit is contained in:
Kirk Baird
2019-02-20 14:16:07 +11:00
parent e9f4cc134e
commit 3517ef6513
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#![no_main]
#[macro_use] extern crate libfuzzer_sys;
extern crate ssz;
fuzz_target!(|data: &[u8]| {
// fuzzed code goes here
});