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

Side by Side Diff: fuzzer/go/data/report_mock.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/report.go ('k') | fuzzer/go/data/report_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 "fmt" 3 import "fmt"
4 4
5 func MockReport(category, id string) FuzzReport { 5 func MockReport(category, id string) FuzzReport {
6 if category == "skpicture" { 6 if category == "skpicture" {
7 return mockPictureDetails[id] 7 return mockPictureDetails[id]
8 } 8 }
9 if category == "api" { 9 if category == "api" {
10 return mockAPIDetails[id] 10 return mockAPIDetails[id]
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 Frames: []StackTraceFrame{ 88 Frames: []StackTraceFrame{
89 { 89 {
90 PackageName: "mock/package/", 90 PackageName: "mock/package/",
91 FileName: file, 91 FileName: file,
92 LineNumber: line, 92 LineNumber: line,
93 FunctionName: function, 93 FunctionName: function,
94 }, 94 },
95 }, 95 },
96 } 96 }
97 } 97 }
OLDNEW
« no previous file with comments | « fuzzer/go/data/report.go ('k') | fuzzer/go/data/report_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698