diff options
author | van Hauser <vh@thc.org> | 2021-11-30 10:56:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 10:56:02 +0100 |
commit | edbf41f78619162071987a44b46ab7f739bb85c1 (patch) | |
tree | 3be630bc3a5d1ea65f3bb49863b37ff5b9d688c4 /docs/custom_mutators.md | |
parent | 235bb3235e45a81eb2b524f3a76346d91a163e3d (diff) | |
parent | 8968bee836ecde0fa2427b84b2f3ac85c276958f (diff) | |
download | afl++-edbf41f78619162071987a44b46ab7f739bb85c1.tar.gz |
Merge pull request #1172 from llzmb/docs_cleanup_folder_2
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. |