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

Commit dc0e7f7

Browse files
authored
fix logic to set check_fuzzer_help (#3130)
1 parent 213fc24 commit dc0e7f7

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/cli/onefuzz/templates/libfuzzer.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def _create_tasks(
6666
colocate_all_tasks: bool = False,
6767
colocate_secondary_tasks: bool = True,
6868
check_fuzzer_help: bool = False,
69-
no_check_fuzzer_help: bool = False,
7069
expect_crash_on_failure: bool = False,
7170
minimized_stack_depth: Optional[int] = None,
7271
module_allowlist: Optional[str] = None,
@@ -76,15 +75,7 @@ def _create_tasks(
7675
analyzer_env: Optional[Dict[str, str]] = None,
7776
tools: Optional[Container] = None,
7877
) -> None:
79-
if check_fuzzer_help:
80-
self.logger.warning(
81-
"--check_fuzzer_help is the default and does not need to be set; this parameter will be removed in a future version"
82-
)
83-
check_fuzzer_help = not no_check_fuzzer_help
84-
del no_check_fuzzer_help
85-
8678
target_options = target_options or []
87-
8879
regression_containers = [
8980
(ContainerType.setup, containers[ContainerType.setup]),
9081
(ContainerType.crashes, containers[ContainerType.crashes]),

0 commit comments

Comments
 (0)