diff options
author | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-11-21 21:11:52 +0100 |
---|---|---|
committer | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-11-21 21:11:52 +0100 |
commit | c31f4646cbd00f591dad3258c08ff8e56aa94420 (patch) | |
tree | 81074c815908039d21ce5c65d1222bb3af19648e /docs/custom_mutators.md | |
parent | 492dbe9fb294dec27e5c2bc7297b36526bb8e61f (diff) | |
download | afl++-c31f4646cbd00f591dad3258c08ff8e56aa94420.tar.gz |
Clean up docs folder
Diffstat (limited to 'docs/custom_mutators.md')
-rw-r--r-- | docs/custom_mutators.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index 8b5a4068..b1dfd309 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -127,9 +127,9 @@ def deinit(): # optional for Python - `describe` (optional): - When this function is called, it shall describe the current testcase, + When this function is called, it shall describe the current test case, generated by the last mutation. This will be called, for example, - to name the written testcase file after a crash occurred. + to name the written test case file after a crash occurred. Using it can help to reproduce crashing mutations. - `havoc_mutation` and `havoc_mutation_probability` (optional): @@ -224,7 +224,7 @@ Optionally, the following environment variables are supported: - `AFL_CUSTOM_MUTATOR_ONLY` - Disable all other mutation stages. This can prevent broken testcases + Disable all other mutation stages. This can prevent broken test cases (those that your Python module can't work with anymore) to fill up your queue. Best combined with a custom trimming routine (see below) because trimming can cause the same test breakage like havoc and splice. |