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

Commit

Permalink
set expect_crash_on_failure default to False on libFuzzer tasks (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmc-msft authored Mar 30, 2021
1 parent b75916d commit 3eb7c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 3eb7c86

Please sign in to comment.