Delete fuzz
This commit is contained in:
parent
78e1372483
commit
3649f335fe
4 changed files with 0 additions and 38 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = [
|
members = [
|
||||||
"reconcile",
|
"reconcile",
|
||||||
"fuzz",
|
|
||||||
"sync_server",
|
"sync_server",
|
||||||
"sync_lib"
|
"sync_lib"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
4
backend/fuzz/.gitignore
vendored
4
backend/fuzz/.gitignore
vendored
|
|
@ -1,4 +0,0 @@
|
||||||
target
|
|
||||||
corpus
|
|
||||||
artifacts
|
|
||||||
coverage
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "reconcile-fuzz"
|
|
||||||
version.workspace = true
|
|
||||||
edition.workspace = true
|
|
||||||
authors.workspace = true
|
|
||||||
license.workspace = true
|
|
||||||
repository.workspace = true
|
|
||||||
publish = false
|
|
||||||
|
|
||||||
[package.metadata]
|
|
||||||
cargo-fuzz = true
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
libfuzzer-sys = "0.4"
|
|
||||||
reconcile = { path = "../reconcile" }
|
|
||||||
|
|
||||||
[[bin]]
|
|
||||||
name = "reconcile"
|
|
||||||
path = "fuzz_targets/reconcile.rs"
|
|
||||||
test = false
|
|
||||||
doc = false
|
|
||||||
bench = false
|
|
||||||
|
|
||||||
[lints]
|
|
||||||
workspace = true
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
#![no_main]
|
|
||||||
|
|
||||||
use libfuzzer_sys::fuzz_target;
|
|
||||||
|
|
||||||
fuzz_target!(|texts: (String, String, String)| {
|
|
||||||
let (original, left, right) = texts;
|
|
||||||
let _ = reconcile::reconcile(&original, &left, &right);
|
|
||||||
});
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue