[llvm-commits] [LNT] r166143 - /lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html

Daniel Dunbar daniel at zuster.org
Wed Oct 17 16:18:31 PDT 2012


Author: ddunbar
Date: Wed Oct 17 18:18:31 2012
New Revision: 166143

URL: http://llvm.org/viewvc/llvm-project?rev=166143&view=rev
Log:
dailyreport: Display "PASS" when a test starts passing.

 - This makes it more obvious the test recovered than just "-" if there is no
   performance change.

Modified:
    lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html

Modified: lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html?rev=166143&r1=166142&r2=166143&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html (original)
+++ lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html Wed Oct 17 18:18:31 2012
@@ -41,7 +41,9 @@
 
 {% if (test_status == analysis.REGRESSED or
        test_status == analysis.UNCHANGED_FAIL) %}
-    <td style="{{ styles.td }}" bgcolor="#FF0000">FAIL</td>
+    <td style="{{ styles.td }}" bgcolor="#e98080">FAIL</td>
+{% elif test_status == analysis.IMPROVED %}
+    <td style="{{ styles.td }}" bgcolor="#8fdf5f">PASS</td>
 {% else %}
 
 {% if (value_status == analysis.REGRESSED or





More information about the llvm-commits mailing list