Skip to content

Commit c7ce907

Browse files
committed
spelling mistakes
1 parent 3f86877 commit c7ce907

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/.wordlist.txt

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ AdvSendAdvert
3737
AE
3838
aef
3939
AES
40+
AFL
4041
AIDL
4142
algs
4243
alloc
@@ -570,6 +571,7 @@ fsync
570571
ftd
571572
fullclean
572573
fuzzer
574+
fuzztest
573575
FW
574576
gbl
575577
gcloud
@@ -1008,6 +1010,7 @@ optionOverride
10081010
optionsMask
10091011
optionsOverride
10101012
orgs
1013+
OSS
10111014
OTA
10121015
OTADownloader
10131016
otaDownloadPath

docs/testing/fuzz_testing.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
- Fuzz Testing involves providing random and unexpected data as input to
44
functions and methods to uncover bugs, security vulnerabilities, or to
55
determine if the software crashes.
6-
- it is often continuous; the function under test is called iteratively with
6+
- it is often continuous; the function under test is called in iteration with
77
thousands of different inputs.
88
- Fuzz testing is often done with sanitizers enabled; to catch memory errors
9-
and undefined behaviour.
9+
and undefined behavior.
1010
- The most commonly used fuzz testing frameworks for C/C++ are LibFuzzer and
1111
AFL.
1212
- [Google's FuzzTest](https://github.com/google/fuzztest) is a newer framework
@@ -16,7 +16,7 @@
1616

1717
## `Google's FuzzTest`
1818

19-
- Google FuzzTest is integrated through Pigweed's
19+
- Google FuzzTest is integrated through Pigweed
2020
[pw_fuzzer](https://pigweed.dev/pw_fuzzer/concepts.html).
2121

2222
### Use cases
@@ -28,7 +28,7 @@
2828
overflows and use-after-free errors.
2929

3030
2. Find Correctness Bugs using Assertions:
31-
- For example, in Roundtrip Fuzzing, fuzzed input is encoded, decoded, and
31+
- For example, in Round trip Fuzzing, fuzzed input is encoded, decoded, and
3232
then verified to match the original input. An example of this can be found
3333
in src/setup_payload/tests/FuzzBase38PW.cpp.
3434

0 commit comments

Comments
 (0)