Changeset 154074 in webkit


Ignore:
Timestamp:
Aug 14, 2013, 2:44:55 PM (12 years ago)
Author:
rniwa@webkit.org
Message:

Flakiness dashboard build fix.

  • TestResultServer/static-dashboards/flakiness_dashboard.js:

(processTestRunsForBuilder):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r154071 r154074  
     12013-08-14  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Flakiness dashboard build fix.
     4
     5        * TestResultServer/static-dashboards/flakiness_dashboard.js:
     6        (processTestRunsForBuilder):
     7
    182013-08-14  Martin Robinson  <mrobinson@igalia.com>
    29
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js

    r149721 r154074  
    600600function allTestsWithSamePlatformAndBuildType(platform, buildType)
    601601{
     602    if (!g_allTestsByPlatformAndBuildType[platform])
     603        return {};
     604
    602605    if (!g_allTestsByPlatformAndBuildType[platform][buildType]) {
    603606        var tests = {};
     
    904907    var platform = buildInfo.platform;
    905908    var buildType = buildInfo.buildType;
     909    if (!platform)
     910        return;
     911
    906912    processMissingTestsWithExpectations(builderName, platform, buildType);
    907913
Note: See TracChangeset for help on using the changeset viewer.