Delete fuzzing targets (#586)

This commit is contained in:
Mehdi Zerouali
2019-10-31 13:13:21 +11:00
committed by Paul Hauner
parent 0fd7dc64e1
commit 83c571d6eb
26 changed files with 0 additions and 574 deletions

View File

@@ -1,4 +0,0 @@
target
corpus
artifacts

View File

@@ -1,22 +0,0 @@
[package]
name = "hashing-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies.hashing]
path = ".."
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_target_hash"
path = "fuzz_targets/fuzz_target_hash.rs"

View File

@@ -1,9 +0,0 @@
#![no_main]
#[macro_use] extern crate libfuzzer_sys;
extern crate hashing;
use hashing::hash;
fuzz_target!(|data: &[u8]| {
let _result = hash(data);
});