Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

set expect_crash_on_failure default to False on libFuzzer tasks #748

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
name="expect_crash_on_failure",
help="Require crashes upon non-zero exits from libfuzzer",
type=UserFieldType.Bool,
default=True,
default=False,
locations=[
UserFieldLocation(
op=UserFieldOperation.add,
Expand Down
2 changes: 1 addition & 1 deletion src/cli/onefuzz/templates/libfuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def basic(
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,
) -> Optional[Job]:
"""
Expand Down