mirror of
https://github.com/chenxiaolong/avbroot.git
synced 2026-07-03 14:05:11 +02:00
5b22d7b603
This initially includes fuzzers for the AVB and boot image parsers. The initial input corpus are the same test files we use for the round trip tests. Issue: #160 Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
19 lines
600 B
TOML
19 lines
600 B
TOML
[package]
|
|
name = "fuzz"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# There's currently no good way to exclude a workspace member for a specific
|
|
# platform, so we just compile empty stubs on Windows (which isn't supported by
|
|
# honggfuzz).
|
|
# https://github.com/rust-lang/cargo/issues/5220
|
|
# https://github.com/rust-lang/cargo/issues/6179
|
|
[target.'cfg(unix)'.dependencies]
|
|
avbroot = { path = "../avbroot" }
|
|
honggfuzz = "0.5.55"
|