Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: fuzzer/go/generator/afl_generation.go

Issue 1691893002: Fuzzer now deduplicates on the analysis side instead of the download side (Closed) Base URL: https://skia.googlesource.com/buildbot@metrics
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fuzzer/go/fuzzer-fe/main.go ('k') | fuzzer/go/storage/download_reports.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fuzzer/go/generator/afl_generation.go
diff --git a/fuzzer/go/generator/afl_generation.go b/fuzzer/go/generator/afl_generation.go
index c16e91cbc14e8a0a381fea73db5bdb19d2f46b74..4fec7f30df9a87ef0eb788146e58eb2760476cb7 100644
--- a/fuzzer/go/generator/afl_generation.go
+++ b/fuzzer/go/generator/afl_generation.go
@@ -34,6 +34,10 @@ func New(category string) *Generator {
// n is specified by config.Generator.NumFuzzProcesses. Output goes to
// config.Generator.AflOutputPath/[category].
func (g *Generator) Start() error {
+ if config.Generator.SkipGeneration {
+ glog.Info("Skipping generation because flag was set.")
+ return nil
+ }
executable, err := g.setup()
if err != nil {
return fmt.Errorf("Failed %s generator setup: %s", g.Category, err)
« no previous file with comments | « fuzzer/go/fuzzer-fe/main.go ('k') | fuzzer/go/storage/download_reports.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698