shithub: fuzz

Download patch

ref: 68e101942114435ffff654258b0c6a759e410377
parent: fec097a955f38b89aee5228c7cf4a900144b80fd
author: seh <seh@localhost>
date: Mon Nov 26 12:03:15 EST 2018

document -s flag in the manual

--- a/fuzz.man
+++ b/fuzz.man
@@ -6,6 +6,10 @@
 .SH SYNOPSIS
 .B fuzz
 [
+.B -s
+.I seed
+]
+[
 .B -n
 .I rounds
 ]
@@ -19,6 +23,10 @@
 .PD
 
 .TP
+.B -s \fIseed
+Use a specific \fIseed\fR for number generation.
+
+.TP
 .B -n \fIrounds
 Perform fuzzing for \fIrounds\fR iterations.
 
@@ -33,6 +41,11 @@
 To fuzz the read and write system calls for two rounds:
 .EX
 fuzz -n 2 read write
+.EE
+
+To fuzz the close system call for 5 rounds using a particular seed:
+.EX
+fuzz -s '-750199259' -n 5 close
 .EE
 
 .PP