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

Unified Diff: Tools/GardeningServer/ui/ct-results-panel.html

Issue 416673003: Show non-webkit test failures in the failure stream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add files accidentally left out Created 6 years, 5 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-results-panel.html
diff --git a/Tools/GardeningServer/ui/ct-results-panel.html b/Tools/GardeningServer/ui/ct-results-panel.html
index accb56f99339b1821c7df09542369889b2665a89..e3229f7575ba73c3238db97a56dd7ffa5b9a6e90 100644
--- a/Tools/GardeningServer/ui/ct-results-panel.html
+++ b/Tools/GardeningServer/ui/ct-results-panel.html
@@ -54,7 +54,10 @@ found in the LICENSE file.
</template>
</core-menu>
<div class="results">
- <ct-embedded-flakiness-dashboard test="{{ failures[selected].testName }}"></ct-embedded-flakiness-dashboard>
+ <!-- FIXME: Do this in a better way than comparing to the test name. -->
+ <template if="{{ failures[selected].testName != 'whole step failed' }}">
abarth-chromium 2014/07/29 16:38:17 It's sad that 'whole step failed' is used as a mag
ojan 2014/07/30 04:14:17 Done.
+ <ct-embedded-flakiness-dashboard test="{{ failures[selected] }}"></ct-embedded-flakiness-dashboard>
+ </template>
<ct-results-by-builder failure="{{ failures[selected] }}"></ct-results-by-builder>
</div>
</template>

Powered by Google App Engine
This is Rietveld 408576698