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

Unified Diff: Tools/GardeningServer/model/ct-failure.html

Issue 458473003: Group similar failures (same directory, same fixture) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates Created 6 years, 4 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
« no previous file with comments | « no previous file | Tools/GardeningServer/model/ct-failure-tests.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/model/ct-failure.html
diff --git a/Tools/GardeningServer/model/ct-failure.html b/Tools/GardeningServer/model/ct-failure.html
index 0908533a1587300213053d50a3eb02e859b3bd1b..b91363b468b0b09e1dc64c279bfd8287c060b8c0 100644
--- a/Tools/GardeningServer/model/ct-failure.html
+++ b/Tools/GardeningServer/model/ct-failure.html
@@ -43,4 +43,12 @@ CTFailure.prototype.flakinessDashboardURL = function(tree) {
CTFailure.prototype.embeddedFlakinessDashboardURL = function(tree) {
return this.flakinessDashboardURL(tree) + '&showChrome=false';
}
+
+CTFailure.prototype.reasonGroupName = function() {
+ if (!this.testName)
+ return undefined;
+ if (this.step == 'webkit_tests')
+ return this.testName.substr(0, this.testName.lastIndexOf('/'));
+ return this.testName.substr(0, this.testName.lastIndexOf('.'));
+};
</script>
« no previous file with comments | « no previous file | Tools/GardeningServer/model/ct-failure-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698