mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-17 12:28:07 +00:00
disable expect_crash_on_failure by default in more places (#807)
dotnet, as well as the _create_tasks helper still used the old default for requiring crash files on libFuzzer exiting non-zero
This commit is contained in:
@ -58,7 +58,7 @@ class Libfuzzer(Command):
|
|||||||
colocate_all_tasks: bool = False,
|
colocate_all_tasks: bool = False,
|
||||||
colocate_secondary_tasks: bool = True,
|
colocate_secondary_tasks: bool = True,
|
||||||
check_fuzzer_help: bool = True,
|
check_fuzzer_help: bool = True,
|
||||||
expect_crash_on_failure: bool = True,
|
expect_crash_on_failure: bool = False,
|
||||||
minimized_stack_depth: Optional[int] = None,
|
minimized_stack_depth: Optional[int] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
|
||||||
@ -443,7 +443,7 @@ class Libfuzzer(Command):
|
|||||||
debug: Optional[List[TaskDebugFlag]] = None,
|
debug: Optional[List[TaskDebugFlag]] = None,
|
||||||
ensemble_sync_delay: Optional[int] = None,
|
ensemble_sync_delay: Optional[int] = None,
|
||||||
check_fuzzer_help: bool = True,
|
check_fuzzer_help: bool = True,
|
||||||
expect_crash_on_failure: bool = True,
|
expect_crash_on_failure: bool = False,
|
||||||
) -> Optional[Job]:
|
) -> Optional[Job]:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
Reference in New Issue
Block a user