mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-22 22:28:50 +00:00
Switch over to new coverage
task (#2741)
This commit is contained in:
@ -81,6 +81,9 @@ class TaskFeature(Enum):
|
||||
report_list = "report_list"
|
||||
minimized_stack_depth = "minimized_stack_depth"
|
||||
coverage_filter = "coverage_filter"
|
||||
function_allowlist = "function_allowlist"
|
||||
module_allowlist = "module_allowlist"
|
||||
source_allowlist = "source_allowlist"
|
||||
target_must_use_input = "target_must_use_input"
|
||||
target_assembly = "target_assembly"
|
||||
target_class = "target_class"
|
||||
|
@ -163,6 +163,9 @@ class TaskDetails(BaseModel):
|
||||
report_list: Optional[List[str]]
|
||||
minimized_stack_depth: Optional[int]
|
||||
coverage_filter: Optional[str]
|
||||
function_allowlist: Optional[str]
|
||||
module_allowlist: Optional[str]
|
||||
source_allowlist: Optional[str]
|
||||
target_assembly: Optional[str]
|
||||
target_class: Optional[str]
|
||||
target_method: Optional[str]
|
||||
@ -385,6 +388,9 @@ class TaskUnitConfig(BaseModel):
|
||||
report_list: Optional[List[str]]
|
||||
minimized_stack_depth: Optional[int]
|
||||
coverage_filter: Optional[str]
|
||||
function_allowlist: Optional[str]
|
||||
module_allowlist: Optional[str]
|
||||
source_allowlist: Optional[str]
|
||||
target_assembly: Optional[str]
|
||||
target_class: Optional[str]
|
||||
target_method: Optional[str]
|
||||
|
Reference in New Issue
Block a user