[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Mon Jul 4 13:47:53 UTC 2016


The branch master has been updated
       via  31b15b9b55e716486d648e96c6a0e06680e077c4 (commit)
      from  d513369bfa03e92c3289109560da4062b1d3625d (commit)


- Log -----------------------------------------------------------------
commit 31b15b9b55e716486d648e96c6a0e06680e077c4
Author: Rich Salz <rsalz at openssl.org>
Date:   Sun Jul 3 20:00:47 2016 -0400

    Update fuzz/README.md
    
    Reviewed-by: Kurt Roeckx <kurt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 fuzz/README.md | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/fuzz/README.md b/fuzz/README.md
index e9ec88b..e8596a7 100644
--- a/fuzz/README.md
+++ b/fuzz/README.md
@@ -41,16 +41,14 @@ Configure for fuzzing:
             enable-asan enable-ubsan no-shared
     $ sudo apt-get install make
     $ LDCMD=clang++ make -j
-    $ fuzz/helper.py <fuzzer> <arguments>
+    $ fuzz/helper.py $FUZZER
 
-Where `<fuzzer>` is one of the executables in `fuzz/`. Most fuzzers do not
-need any command line arguments, but, for example, `asn1` needs the name of a
-data type.
+Where $FUZZER is one of the executables in `fuzz/`.
 
 If you get a crash, you should find a corresponding input file in
-`fuzz/corpora/<fuzzer>-crash/`. You can reproduce the crash with
+`fuzz/corpora/$FUZZER-crash/`. You can reproduce the crash with
 
-    $ fuzz/<fuzzer> <crashfile>
+    $ fuzz/$FUZZER <crashfile>
 
 AFL
 ===
@@ -63,8 +61,6 @@ Configure for fuzzing:
 
 Run one of the fuzzers:
 
-    $ afl-fuzz fuzz/<fuzzer> -i fuzz/corpora/<fuzzer> -o fuzz/corpora/<fuzzer>/out <fuzzer> <arguments>
+    $ afl-fuzz -i fuzz/corpora/$FUZZER -o fuzz/corpora/$FUZZER/out fuzz/$FUZZER
 
-Where `<fuzzer>` is one of the executables in `fuzz/`. Most fuzzers do not
-need any command line arguments, but, for example, `asn1` needs the name of a
-data type.
+Where $FUZZER is one of the executables in `fuzz/`.


More information about the openssl-commits mailing list