mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-07-07 17:45:01 +00:00
ci: enable the cliprdr_format fuzz harness (#398)
This commit is contained in:
parent
3ee44b5c9b
commit
def44ec32c
3 changed files with 8 additions and 2 deletions
2
.github/workflows/fuzz.yml
vendored
2
.github/workflows/fuzz.yml
vendored
|
@ -41,7 +41,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: [ pdu_decoding, rle_decompression, bitmap_stream ]
|
||||
target: [ pdu_decoding, rle_decompression, bitmap_stream, cliprdr_format ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
|
@ -34,3 +34,9 @@ name = "bitmap_stream"
|
|||
path = "fuzz_targets/bitmap_stream.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "cliprdr_format"
|
||||
path = "fuzz_targets/cliprdr_format.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
|
|
@ -33,7 +33,7 @@ pub const CARGO: &str = env!("CARGO");
|
|||
|
||||
pub const WASM_PACKAGES: &[&str] = &["ironrdp-web"];
|
||||
|
||||
pub const FUZZ_TARGETS: &[&str] = &["pdu_decoding", "rle_decompression", "bitmap_stream"];
|
||||
pub const FUZZ_TARGETS: &[&str] = &["pdu_decoding", "rle_decompression", "bitmap_stream", "cliprdr_format"];
|
||||
|
||||
fn main() -> anyhow::Result<()> {
|
||||
let args = match cli::parse_args() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue