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

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

Issue 526633002: Apply object updates from the network without blowing away object identity or UI attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Initial 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
Index: Tools/GardeningServer/model/ct-failure.html
diff --git a/Tools/GardeningServer/model/ct-failure.html b/Tools/GardeningServer/model/ct-failure.html
index 73ac640be64a96e7e45efab09c13153cf3301eb2..5d1d8f940f46f78a68d24ac1eed87f1e11772a74 100644
--- a/Tools/GardeningServer/model/ct-failure.html
+++ b/Tools/GardeningServer/model/ct-failure.html
@@ -6,9 +6,12 @@ found in the LICENSE file.
<script>
function CTFailure(step, reason, resultsByBuilder) {
+ this.fingerprint = step + '::' + reason;
this.step = step;
// FIXME: Rename this to reason.
this.testName = reason;
+ // Maps a builder_name (e.g. "Mac ASan Tests (1)")
+ // to the details of the failure on that builder.
this.resultNodesByBuilder = resultsByBuilder;
}

Powered by Google App Engine
This is Rietveld 408576698