diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-24 08:27:41 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-24 08:20:54 +0100 |
commit | fa511042b0bbec02016761bcd0d30f57e0386550 (patch) | |
tree | 5be1cd0b8a1858914541791513cdfde7a60983e6 /test | |
parent | 1be6f2dba9b79e54ffdb40ae6ac14cede61232ab (diff) |
doc: [test] Remove outdated comment in fuzz runner
Diffstat (limited to 'test')
-rwxr-xr-x | test/fuzz/test_runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py index 3a2cefbe2b..3c743603bb 100755 --- a/test/fuzz/test_runner.py +++ b/test/fuzz/test_runner.py @@ -54,7 +54,7 @@ def main(): ) parser.add_argument( '--m_dir', - help='Merge inputs from this directory into the seed_dir. Needs /target subdirectory.', + help='Merge inputs from this directory into the seed_dir.', ) parser.add_argument( '-g', @@ -210,7 +210,7 @@ def generate_corpus_seeds(*, fuzz_pool, build_dir, seed_dir, targets): def merge_inputs(*, fuzz_pool, corpus, test_list, build_dir, merge_dir): - logging.info("Merge the inputs in the passed dir into the seed_dir. Passed dir {}".format(merge_dir)) + logging.info("Merge the inputs from the passed dir into the seed_dir. Passed dir {}".format(merge_dir)) jobs = [] for t in test_list: args = [ |