ci: enable the cliprdr_format fuzz harness (#398)

This commit is contained in:
Benoît Cortier 2024-03-07 22:16:51 +09:00 committed by GitHub
parent 3ee44b5c9b
commit def44ec32c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View file

@ -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

View file

@ -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

View file

@ -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() {