diff options
author | iximeow <me@iximeow.net> | 2023-12-23 13:20:53 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-12-23 13:20:53 -0800 |
commit | 372d903e98953817c818211243fbc6f7e9294884 (patch) | |
tree | 02a20d66f5499f0d2aee5fd4fb031a8ac3461bb0 /fuzz/Cargo.toml | |
parent | d7cc1c7c82a7995bdbdb67f791e378967f93f880 (diff) |
add fuzz target for no panicking plz (it found panics)
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r-- | fuzz/Cargo.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..cf84c01 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "yaxpeax-rx-fuzz" +version = "0.0.0" +authors = ["Automatically generated"] +publish = false +edition = "2018" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" +yaxpeax-rx = { path = ".." } +yaxpeax-arch = "0.2.7" + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "fuzz_target_1" +path = "fuzz_targets/fuzz_target_1.rs" +test = false +doc = false + +[[bin]] +name = "no-panic" +path = "fuzz_targets/no-panic.rs" +test = false +doc = false |