Enable dotnet fuzzing (#2273)

Add a new CLI job template, `libfuzzer dotnet_dll`, and supporting server-side definitions.
This commit is contained in:
Joe Ranweiler
2022-10-19 14:17:27 -07:00
committed by GitHub
parent b88f46779e
commit ee0cbd70a0
23 changed files with 1014 additions and 361 deletions

View File

@ -902,6 +902,9 @@ class Tasks(Endpoint):
target_options_merge: bool = False,
target_timeout: Optional[int] = None,
target_workers: Optional[int] = None,
target_assembly: Optional[str] = None,
target_class: Optional[str] = None,
target_method: Optional[str] = None,
vm_count: int = 1,
preserve_existing_outputs: bool = False,
colocate: bool = False,
@ -975,6 +978,9 @@ class Tasks(Endpoint):
target_options_merge=target_options_merge,
target_timeout=target_timeout,
target_workers=target_workers,
target_assembly=target_assembly,
target_class=target_class,
target_method=target_method,
type=task_type,
wait_for_files=task_wait_for_files,
report_list=report_list,