Changeset 92133 in webkit


Ignore:
Timestamp:
Aug 1, 2011 11:45:02 AM (13 years ago)
Author:
abarth@webkit.org
Message:

garden-o-matic should show all failures, even ones that it can't find a regression range for
https://bugs.webkit.org/show_bug.cgi?id=65447

Reviewed by Dimitri Glazkov.

Previously, we just wouldn't display test failures that we couldn't
identify a regression range for (or whose regression range had fallen
off the page). This patch just displays them at the end of the list,
which is slightly (but not much) better.

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js

    r92056 r92133  
    213213    var regressionRows = rowsInRevisionRange(impliedFirstFailingRevision, failureAnalysis.oldestFailingRevision);
    214214
    215     // FIXME: We need to create more rows if regressionRows.length is zero.
    216 
    217215    $('.entry', regressionRows).addClass('possible-regression');
    218216
    219217    var failureSummary = ui.summarizeFailure(failureAnalysis).attr(config.kRevisionAttr, impliedFirstFailingRevision);
    220     regressionRows.last().after(failureSummary);
     218    (regressionRows.length ? regressionRows : $('.recent-history tr')).last().after(failureSummary);
    221219
    222220    // FIXME: We should just compute this for failureSummary instead of recomputing the whole page.
  • trunk/Tools/ChangeLog

    r92128 r92133  
     12011-08-01  Adam Barth  <abarth@webkit.org>
     2
     3        garden-o-matic should show all failures, even ones that it can't find a regression range for
     4        https://bugs.webkit.org/show_bug.cgi?id=65447
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        Previously, we just wouldn't display test failures that we couldn't
     9        identify a regression range for (or whose regression range had fallen
     10        off the page).  This patch just displays them at the end of the list,
     11        which is slightly (but not much) better.
     12
     13        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
     14
    1152011-08-01  Jeff Miller  <jeffm@apple.com>
    216
Note: See TracChangeset for help on using the changeset viewer.