summaryrefslogtreecommitdiffstats
path: root/tests/libfuzzer/README
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-08-15 13:09:55 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-08-15 16:53:19 +0200
commitc7ec7cd2a1ae9bec31113fae1f1e549b2bf98e0b (patch)
treefc81fba4e7815ea061da277cf3bcf3102866932f /tests/libfuzzer/README
parent7947032e2d1d68b2c0f79874db7adcf560851f29 (diff)
parent6132260da394a9627947f0fe6a279c20863b6ad2 (diff)
Merge branch 'wip/qt6' into wip/cmake
Diffstat (limited to 'tests/libfuzzer/README')
-rw-r--r--tests/libfuzzer/README6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/libfuzzer/README b/tests/libfuzzer/README
index 7327e76eff..57140cebfb 100644
--- a/tests/libfuzzer/README
+++ b/tests/libfuzzer/README
@@ -7,7 +7,7 @@ of the test and track the code execution. Should the test crash, libFuzzer will
data which triggered the crash. You can then use this to debug and fix the called code.
! Please note: The purpose of fuzz testing is to find unexpected code paths. Running fuzz tests may!
-! result in unforeseen bevavior, including loss of data. Consider running the tests in an isolated !
+! result in unforeseen behavior, including loss of data. Consider running the tests in an isolated !
! environment, e.g. on a virtual machine. You have been warned. !
To run a test with libFuzzer:
@@ -21,7 +21,7 @@ To run a test with libFuzzer:
to add the needed code coverage instrumentation. Since speed of execution is crucial for fuzz
testing, it's recommendable to also use the switches
-release -static
- It might also make sense to add sanitzers by passing
+ It might also make sense to add sanitizers by passing
-sanitize <...>
4. Build Qt.
5. Build one of the tests using this Qt build.
@@ -29,7 +29,7 @@ To run a test with libFuzzer:
Depending on the expected input format of the tested function, you will get results faster if
you:
* provide a set of interesting input data by passing the path of a directory which contains
- these data, each in one file. You can find such datasets in the subdirectory "testcases".
+ these data, each in one file. You can find such data sets in the subdirectory "testcases".
* pass a so-called dictionary listing keywords of the input format using
-dict=<dictionary file>
A couple of such dictionaries are provided by AFL (http://lcamtuf.coredump.cx/afl/)