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

Unified Diff: Tools/GardeningServer/ui/ct-builder-failure-card.html

Issue 555263004: Add hung bots to sheriff-o-matic view (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address nits. Created 6 years, 3 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/ui/ct-builder-failure-card.html
diff --git a/Tools/GardeningServer/ui/ct-bot-failure-card.html b/Tools/GardeningServer/ui/ct-builder-failure-card.html
similarity index 65%
copy from Tools/GardeningServer/ui/ct-bot-failure-card.html
copy to Tools/GardeningServer/ui/ct-builder-failure-card.html
index 81c32282f51d65bcbcb4960fe86b7a2786867c45..b84ece438a54354a8869c9648625582278959cb4 100644
--- a/Tools/GardeningServer/ui/ct-bot-failure-card.html
+++ b/Tools/GardeningServer/ui/ct-builder-failure-card.html
@@ -8,7 +8,7 @@ found in the LICENSE file.
<link rel="import" href="ct-commit-list.html">
<link rel="import" href="ct-test-list.html">
-<polymer-element name="ct-bot-failure-card" attributes="group builderList" noscript>
+<polymer-element name="ct-builder-failure-card" attributes="group builderList" noscript>
<template>
<style>
ct-builder-grid {
@@ -22,8 +22,13 @@ found in the LICENSE file.
</style>
<ct-builder-grid builderList="{{ builderList }}"></ct-builder-grid>
<div id="failure">
- <ct-test-list tests="{{ group.failures }}" tree="{{ tree }}"></ct-test-list>
- <ct-commit-list commitList="{{ group.commitList }}"></ct-commit-list>
+ <template if="{{ group.failure.step == 'building' }}">
+ Running
+ </template>
+ <template if="{{ group.failure.step == 'offline' }}">
+ Offline
+ </template>
+ for {{ group.failure.testName }}
</div>
</template>
</polymer-element>
« no previous file with comments | « Tools/GardeningServer/model/test/ct-failures-tests.html ('k') | Tools/GardeningServer/ui/ct-failure-card.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698