From 85da6413f9b8923baf6d2eb5823c32ec41dacfd4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 22 Jun 2016 15:23:56 +0200 Subject: stress: expect syz-executor to be in the current dir by default --- tools/syz-stress/stress.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/syz-stress/stress.go b/tools/syz-stress/stress.go index defcb38a3..de5f8ddf8 100644 --- a/tools/syz-stress/stress.go +++ b/tools/syz-stress/stress.go @@ -25,7 +25,7 @@ import ( var ( flagCorpus = flag.String("corpus", "", "corpus directory") - flagExecutor = flag.String("executor", "", "path to executor binary") + flagExecutor = flag.String("executor", "./syz-executor", "path to executor binary") flagOutput = flag.Bool("output", false, "print executor output to console") flagProcs = flag.Int("procs", 2*runtime.NumCPU(), "number of parallel processes") flagLogProg = flag.Bool("logprog", false, "print programs before execution") -- cgit mrf-deployment