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

Unified Diff: fuzzer/go/common/storage.go

Issue 1668543004: Add AddressSanitizer to fuzzer analysis (Closed) Base URL: https://skia.googlesource.com/buildbot@remove-old-tests
Patch Set: add multi threaded delete 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
Index: fuzzer/go/common/storage.go
diff --git a/fuzzer/go/common/storage.go b/fuzzer/go/common/storage.go
index 6883b325fad9870089766111b48c958fc8951950..010c32eae2deff61fc0d58dddf7cfea7b36443b4 100644
--- a/fuzzer/go/common/storage.go
+++ b/fuzzer/go/common/storage.go
@@ -15,7 +15,7 @@ import (
func GetAllFuzzNamesInFolder(s *storage.Client, name string) (hashes []string, err error) {
filter := func(item *storage.ObjectAttrs) {
name := item.Name
- if strings.HasSuffix(name, ".dump") || strings.HasSuffix(name, ".err") {
+ if strings.Contains(name, ".") {
return
}
fuzzHash := name[strings.LastIndex(name, "/")+1:]

Powered by Google App Engine
This is Rietveld 408576698