Skip to content

Commit

Permalink
tools/syz-prog2c: add missing csource option
Browse files Browse the repository at this point in the history
  • Loading branch information
dvyukov committed May 17, 2018
1 parent be47ebb commit 9753d3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/syz-prog2c/prog2c.go
Expand Up @@ -30,6 +30,7 @@ var (
flagUseTmpDir = flag.Bool("tmpdir", false, "create a temporary dir and execute inside it")
flagHandleSegv = flag.Bool("segv", false, "catch and ignore SIGSEGV")
flagWaitRepeat = flag.Bool("waitrepeat", false, "wait for each repeat attempt")
flagCgroups = flag.Bool("cgroups", false, "enable cgroups support")
flagDebug = flag.Bool("debug", false, "generate debug printfs")
)

Expand Down Expand Up @@ -65,6 +66,7 @@ func main() {
FaultNth: *flagFaultNth,
EnableTun: *flagEnableTun,
UseTmpDir: *flagUseTmpDir,
EnableCgroups: *flagCgroups,
HandleSegv: *flagHandleSegv,
WaitRepeat: *flagWaitRepeat,
Debug: *flagDebug,
Expand Down

0 comments on commit 9753d3b

Please sign in to comment.