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

Side by Side Diff: fuzzer/go/data/stacktrace_test.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/stacktrace.go ('k') | fuzzer/go/data/testdata/parse-asan-double.asan » ('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 "path/filepath" 4 "path/filepath"
5 "reflect" 5 "reflect"
6 "strings" 6 "strings"
7 "testing" 7 "testing"
8 8
9 "go.skia.org/infra/fuzzer/go/common" 9 "go.skia.org/infra/fuzzer/go/common"
10 "go.skia.org/infra/go/testutils" 10 "go.skia.org/infra/go/testutils"
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 t.Errorf("Top frame was wrong. Expected: %#v, but was %#v", exp ected, frame) 427 t.Errorf("Top frame was wrong. Expected: %#v, but was %#v", exp ected, frame)
428 } 428 }
429 429
430 if len(result.Release.StackTrace.Frames) != 1 { 430 if len(result.Release.StackTrace.Frames) != 1 {
431 t.Errorf("Should not have had empty release stacktrace") 431 t.Errorf("Should not have had empty release stacktrace")
432 } 432 }
433 if frame := result.Release.StackTrace.Frames[0]; frame.LineNumber != exp ected.LineNumber || frame.FunctionName != expected.FunctionName || frame.FileNam e != expected.FileName || frame.PackageName != expected.PackageName { 433 if frame := result.Release.StackTrace.Frames[0]; frame.LineNumber != exp ected.LineNumber || frame.FunctionName != expected.FunctionName || frame.FileNam e != expected.FileName || frame.PackageName != expected.PackageName {
434 t.Errorf("Top frame was wrong. Expected: %#v, but was %#v", exp ected, frame) 434 t.Errorf("Top frame was wrong. Expected: %#v, but was %#v", exp ected, frame)
435 } 435 }
436 } 436 }
OLDNEW
« no previous file with comments | « fuzzer/go/data/stacktrace.go ('k') | fuzzer/go/data/testdata/parse-asan-double.asan » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698