copyediting README.md

This commit is contained in:
Philippe Antoine 2019-06-06 09:22:27 +02:00
parent c32fd248e3
commit cd6cd811f1

View File

@ -20,11 +20,11 @@ python infra/helper.py build_image mbedtls
python infra/helper.py build_fuzzers --sanitizer address mbedtls
python infra/helper.py run_fuzzer mbedtls fuzz_client
```
You can use `undefined` sanitizer as well as `address` sanitizer
And you can run any of the fuzz targets like `fuzz_client`
You can use `undefined` sanitizer as well as `address` sanitizer.
And you can run any of the fuzz targets like `fuzz_client`.
To run the fuzz targets without oss-fuzz, you first need to install one libFuzzingEngine (libFuzzer for instance)
Then you need to compile the code with the compiler flags of the wished sanitizer
To run the fuzz targets without oss-fuzz, you first need to install one libFuzzingEngine (libFuzzer for instance).
Then you need to compile the code with the compiler flags of the wished sanitizer.
```
perl scripts/config.pl set MBEDTLS_PLATFORM_TIME_ALT
mkdir build
@ -32,4 +32,4 @@ cd build
cmake ..
make
```
Finally, you can run the targets like `./test/fuzz/fuzz_client`
Finally, you can run the targets like `./test/fuzz/fuzz_client`.