diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2015-11-10 20:30:50 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2015-11-10 20:30:50 +0100 |
| commit | 0165a4b2e4384f44c8042dcacaf52563ec74bb8c (patch) | |
| tree | a8f35be5a7ec82b5b54c601da878763c9fb05bf1 /fuzzer | |
| parent | d3e457e2853c2f72c06b964034f239c34510fa37 (diff) | |
use fork server in executor
This avoids exec per test.
Also allows to pre-map shared memory regions.
And will allow to pre-map coverage regions, etc.
Seems to work already, but probably there are still some bugs.
Diffstat (limited to 'fuzzer')
| -rw-r--r-- | fuzzer/fuzzer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzer/fuzzer.go b/fuzzer/fuzzer.go index cb78d848d..cdcbcfca6 100644 --- a/fuzzer/fuzzer.go +++ b/fuzzer/fuzzer.go @@ -109,7 +109,7 @@ func main() { if !*flagNoCover { flags |= ipc.FlagCover | ipc.FlagDedupCover } - env, err := ipc.MakeEnv(*flagExecutor, 4*time.Second, flags) + env, err := ipc.MakeEnv(*flagExecutor, 10*time.Second, flags) if err != nil { panic(err) } |
