[LNT] r275093 - Show change ID in the regression details view

Chris Matthews via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 11 12:42:37 PDT 2016


Author: cmatthews
Date: Mon Jul 11 14:42:37 2016
New Revision: 275093

URL: http://llvm.org/viewvc/llvm-project?rev=275093&view=rev
Log:
Show change ID in the regression details view

It is nice to be able to reference a change directly, so lets print
their IDs in the regression details list. Also, get rid of X table
header, it was silly.

Modified:
    lnt/trunk/lnt/server/ui/templates/v4_regression_detail.html

Modified: lnt/trunk/lnt/server/ui/templates/v4_regression_detail.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_regression_detail.html?rev=275093&r1=275092&r2=275093&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_regression_detail.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_regression_detail.html Mon Jul 11 14:42:37 2016
@@ -80,7 +80,8 @@ var changes = [
   
   <thead>
   <tr>
-    <th>X</th>
+    <th></th>
+    <th>Δ ID</th>
     <th>Machine</th>
     <th>Metric</th>
     <th>Test</th>
@@ -107,6 +108,7 @@ var changes = [
                     <td style="background:transparent;"></td><td>{{ form_change }}</td>
                 </tr>
             </table>
+        <td class="change_id">{{fc.ri.id}}</td>
         <td class="machine">{{utils.render_machine(fc.ri.machine)}}</td>
         <td class="metric"> {{ fc.ri.field.name }} </td>
          {% set graph_base=v4_url_for('v4_graph', highlight_run=fc.run.id) %}




More information about the llvm-commits mailing list