aboutsummaryrefslogtreecommitdiff
path: root/FUZZING.md
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2021-04-14 16:23:27 -0400
committerAdam Langley <agl@google.com>2021-04-14 20:48:41 +0000
commit5545b61a963d175fd6052c18a4dd6ff242ce32f0 (patch)
tree72c984c7379951ab1b74c6d3bfb03b7c288819d6 /FUZZING.md
parent43828993bcb7c8bbe74703cd74dabd208c792baf (diff)
downloadboringssl-5545b61a963d175fd6052c18a4dd6ff242ce32f0.zip
boringssl-5545b61a963d175fd6052c18a4dd6ff242ce32f0.tar.gz
boringssl-5545b61a963d175fd6052c18a4dd6ff242ce32f0.tar.bz2
Use a consistent plural for 'corpus'.
'corpora' seems to be more common than 'corpuses' in Chromium code search, including in libFuzzer's source itself. Change-Id: I6489b57a4608f47274c4400aac135cbfb991953a Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/46825 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'FUZZING.md')
-rw-r--r--FUZZING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/FUZZING.md b/FUZZING.md
index c2f802f..5653acc 100644
--- a/FUZZING.md
+++ b/FUZZING.md
@@ -42,11 +42,11 @@ These were determined by rounding up the length of the largest case in the corpu
There are directories in `fuzz/` for each of the fuzzing tests which contain seed files for fuzzing. Some of the seed files were generated manually but many of them are “interesting” results generated by the fuzzing itself. (Where “interesting” means that it triggered a previously unknown path in the code.)
-## Minimising the corpuses
+## Minimising the corpora
When a large number of new seeds are available, it's a good idea to minimise the corpus so that different seeds that trigger the same code paths can be deduplicated.
-In order to minimise all the corpuses, build for fuzzing and run `./fuzz/minimise_corpuses.sh`. Note that minimisation is, oddly, often not idempotent for unknown reasons.
+In order to minimise all the corpora, build for fuzzing and run `./fuzz/minimise_corpora.sh`. Note that minimisation is, oddly, often not idempotent for unknown reasons.
## Fuzzer mode