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

Commit

Permalink
fixing libfuzzer_merge (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita authored Nov 3, 2020
1 parent 46064fb commit 04643a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/api-service/__app__/onefuzzlib/tasks/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,15 @@
permissions=[ContainerPermission.Read, ContainerPermission.List],
),
ContainerDefinition(
type=ContainerType.readonly_inputs,
compare=Compare.AtLeast,
type=ContainerType.unique_inputs,
compare=Compare.Equal,
value=1,
permissions=[ContainerPermission.Read, ContainerPermission.List],
permissions=[
ContainerPermission.Create,
ContainerPermission.List,
ContainerPermission.Read,
ContainerPermission.Write,
],
),
ContainerDefinition(
type=ContainerType.inputs,
Expand Down
1 change: 1 addition & 0 deletions src/cli/onefuzz/templates/libfuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ def basic(
ContainerType.unique_reports,
ContainerType.no_repro,
ContainerType.coverage,
ContainerType.unique_inputs,
)

if existing_inputs:
Expand Down

0 comments on commit 04643a9

Please sign in to comment.