Changeset 173273 in webkit


Ignore:
Timestamp:
Sep 4, 2014 1:01:33 PM (10 years ago)
Author:
ap@apple.com
Message:

REGRESSION: Dashboard metrics page aggregation counts performance bots
https://bugs.webkit.org/show_bug.cgi?id=136539

Reviewed by Tim Horton.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/MetricsMain.js:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/MetricsMain.js

    r173008 r173273  
    328328
    329329        var endDate = new Date(new Date(obj.date2).setDate(obj.date2.getDate() + 1));
    330         analyzer.analyze(unhiddenQueues(), obj.date1, endDate);
     330
     331        // FIXME: Support performance bots.
     332        var queues = unhiddenQueues().filter(function(queue) { return queue.builder || queue.tester; });
     333        analyzer.analyze(queues, obj.date1, endDate);
    331334    });
    332335
  • trunk/Tools/ChangeLog

    r173270 r173273  
     12014-09-04  Alexey Proskuryakov  <ap@apple.com>
     2
     3        REGRESSION: Dashboard metrics page aggregation counts performance bots
     4        https://bugs.webkit.org/show_bug.cgi?id=136539
     5
     6        Reviewed by Tim Horton.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/MetricsMain.js:
     9
    1102014-09-04  Brent Fulgham  <bfulgham@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.