Changeset 90852 in webkit


Ignore:
Timestamp:
Jul 12, 2011 2:38:21 PM (13 years ago)
Author:
ojan@chromium.org
Message:

fix flakiness dashboard to work with new crash log filenames
https://bugs.webkit.org/show_bug.cgi?id=64393

Reviewed by Adam Barth.

  • TestResultServer/static-dashboards/flakiness_dashboard.html:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r90846 r90852  
     12011-07-12  Ojan Vafai  <ojan@chromium.org>
     2
     3        fix flakiness dashboard to work with new crash log filenames
     4        https://bugs.webkit.org/show_bug.cgi?id=64393
     5
     6        Reviewed by Adam Barth.
     7
     8        * TestResultServer/static-dashboards/flakiness_dashboard.html:
     9
    1102011-07-12  Adam Barth  <abarth@webkit.org>
    211
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html

    r90674 r90852  
    22652265    if (builder) {
    22662266      var resultsType;
    2267       if (endsWith(path, '-stack.txt')) {
     2267      if (endsWith(path, '-crash-log.txt')) {
    22682268        resultsType = 'STACKTRACE';
    22692269      } else if (endsWith(path, '-actual.txt') ||
     
    24002400    }
    24012401
    2402     var actualResultSuffixes = ['-actual.txt', '-actual.png', '-stack.txt',
     2402    var actualResultSuffixes = ['-actual.txt', '-actual.png', '-crash-log.txt',
    24032403        '-diff.txt', '-wdiff.html', '-diff.png'];
    24042404
Note: See TracChangeset for help on using the changeset viewer.