aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2016-06-22 15:23:56 +0200
committerDmitry Vyukov <dvyukov@google.com>2016-06-22 15:23:56 +0200
commit85da6413f9b8923baf6d2eb5823c32ec41dacfd4 (patch)
tree8739802756c55d01e4a98c86329a71dd354c8e75
parent1816c21f2bed9b6015f1af1c5423779d2c6e58ad (diff)
stress: expect syz-executor to be in the current dir by default
-rw-r--r--tools/syz-stress/stress.go2
1 files changed, 1 insertions, 1 deletions
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")