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:
bmc-msft
2021-04-15 16:19:10 -04:00
committed by GitHub
parent c5e0163068
commit d9eda00f12

View File

@ -58,7 +58,7 @@ class Libfuzzer(Command):
colocate_all_tasks: bool = False,
colocate_secondary_tasks: 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,
) -> None:
@ -443,7 +443,7 @@ class Libfuzzer(Command):
debug: Optional[List[TaskDebugFlag]] = None,
ensemble_sync_delay: Optional[int] = None,
check_fuzzer_help: bool = True,
expect_crash_on_failure: bool = True,
expect_crash_on_failure: bool = False,
) -> Optional[Job]:
"""