(run BenchmarkRun)
| 394 | } |
| 395 | |
| 396 | func runPluginNames(run BenchmarkRun) []string { |
| 397 | if len(run.PluginOrder) == 0 { |
| 398 | return sortedRunPluginNames(run.PluginResults) |
| 399 | } |
| 400 | return normalizeRunPluginOrder(run.PluginResults, run.PluginOrder) |
| 401 | } |
| 402 | |
| 403 | func normalizeRunPluginOrder(results map[string]PluginRunResult, order []string) []string { |
| 404 | seen := map[string]struct{}{} |
no test coverage detected