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

Side by Side Diff: fuzzer/go/data/stacktrace.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 unified diff | Download patch
« no previous file with comments | « fuzzer/go/data/result.go ('k') | fuzzer/go/data/stacktrace_test.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package data 1 package data
2 2
3 import ( 3 import (
4 "bufio" 4 "bufio"
5 "bytes" 5 "bytes"
6 "fmt" 6 "fmt"
7 "regexp" 7 "regexp"
8 "strconv" 8 "strconv"
9 "strings" 9 "strings"
10 10
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 s := fmt.Sprintf("StackTrace with %d frames:\n", len(st.Frames)) 184 s := fmt.Sprintf("StackTrace with %d frames:\n", len(st.Frames))
185 for _, f := range st.Frames { 185 for _, f := range st.Frames {
186 s += fmt.Sprintf("\t%s\n", f.String()) 186 s += fmt.Sprintf("\t%s\n", f.String())
187 } 187 }
188 return s 188 return s
189 } 189 }
190 190
191 func (st *StackTrace) IsEmpty() bool { 191 func (st *StackTrace) IsEmpty() bool {
192 return len(st.Frames) == 0 192 return len(st.Frames) == 0
193 } 193 }
OLDNEW
« no previous file with comments | « fuzzer/go/data/result.go ('k') | fuzzer/go/data/stacktrace_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698