[llvm-commits] [zorg] r109779 - /zorg/trunk/lnt/lnt/util/NTEmailReport.py

Daniel Dunbar daniel at zuster.org
Thu Jul 29 11:15:05 PDT 2010


Author: ddunbar
Date: Thu Jul 29 13:15:05 2010
New Revision: 109779

URL: http://llvm.org/viewvc/llvm-project?rev=109779&view=rev
Log:
LNT/simple: Stop listing existing failures twice.

Modified:
    zorg/trunk/lnt/lnt/util/NTEmailReport.py

Modified: zorg/trunk/lnt/lnt/util/NTEmailReport.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/lnt/lnt/util/NTEmailReport.py?rev=109779&r1=109778&r2=109779&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/util/NTEmailReport.py (original)
+++ zorg/trunk/lnt/lnt/util/NTEmailReport.py Thu Jul 29 13:15:05 2010
@@ -325,35 +325,6 @@
                 print >>html_report, """
 </table>"""
 
-    # Generate a list of the existing failures.
-    if existing_failures:
-        show_pset = existing_failures.items()[0][0] or len(items) > 1
-
-        print >>report
-        print >>report, """================="""
-        print >>report, """Existing Failures"""
-        print >>report, """================="""
-        print >>html_report, """
-<hr>
-<h3>Existing Failures</h3>"""
-        for pset,tests in existing_failures.items():
-            if show_pset:
-                print >>report
-                print >>report, "Parameter Set:", pset
-                table_name = "Existing Failures - %s" % (name, pset)
-            else:
-                table_name = "Existing Failures"
-
-            print >>html_report, """
-<p>
-<table class="sortable">
-<tr><th>%s</th></tr>""" % table_name
-            for name,cr in tests:
-                print >>report, '  %s' % (name,)
-                print >>html_report, """<tr><td>%s</td></tr>""" % (name,)
-            print >>html_report, """
-</table>"""
-
     # Finish up the HTML report.
     if graphs:
         # Get the test ids we want data for.





More information about the llvm-commits mailing list