mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
ci: enable the cliprdr_format fuzz harness (#398)
This commit is contained in:
@@ -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
|
||||
|
||||
+1
-1
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user