diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-08-09 08:24:59 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-08-16 09:39:52 +0200 |
commit | d2e49df8ebc1b3a7e3a28059c099174365e0a546 (patch) | |
tree | 6078fd18d2ac02783e64ed0f93cacedf883dc327 /devel | |
parent | 11196e76849d671284936540f063846aeab21604 (diff) | |
download | gnutls-d2e49df8ebc1b3a7e3a28059c099174365e0a546.tar.gz |
fuzzer: added a fuzzer target
This allows to compile the library with flags which will add predictable
random generation and eliminate some crypto checks, in order for the
library to be used for testing (fuzzying).
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/fuzz/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/fuzz/README.md b/devel/fuzz/README.md index 575f80e091..0d94bbae15 100644 --- a/devel/fuzz/README.md +++ b/devel/fuzz/README.md @@ -18,7 +18,7 @@ using other projects like openssl. Use the following commands on top dir: ``` -$ CC="afl-gcc" ./configure +$ CC="afl-gcc" ./configure --enable-fuzzer-target $ make -j$(nproc) $ cd devel/fuzz $ make gnutls_pkcs7_parser_fuzzer |