Changeset 128321 in webkit


Ignore:
Timestamp:
Sep 12, 2012 9:06:55 AM (12 years ago)
Author:
zandobersek@gmail.com
Message:

Flakiness dashboard doesn't recognize new Chromium Android test builder
https://bugs.webkit.org/show_bug.cgi?id=96523

Reviewed by Ojan Vafai.

Properly return 'ANDROID' as the Chromium platform for Android builders.

  • TestResultServer/static-dashboards/flakiness_dashboard.js:

(chromiumPlatform):

  • TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:

(test):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r128308 r128321  
     12012-09-12  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        Flakiness dashboard doesn't recognize new Chromium Android test builder
     4        https://bugs.webkit.org/show_bug.cgi?id=96523
     5
     6        Reviewed by Ojan Vafai.
     7
     8        Properly return 'ANDROID' as the Chromium platform for Android builders.
     9
     10        * TestResultServer/static-dashboards/flakiness_dashboard.js:
     11        (chromiumPlatform):
     12        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
     13        (test):
     14
    1152012-09-12  Simon Hausmann  <simon.hausmann@nokia.com>
    216
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js

    r128077 r128321  
    4141// FIXME: These platform names should probably be changed to match the directories in LayoutTests/platform
    4242// instead of matching the values we use in the TestExpectations file.
    43 var PLATFORMS = ['LION', 'SNOWLEOPARD', 'XP', 'VISTA', 'WIN7', 'LUCID', 'APPLE_LION', 'APPLE_SNOWLEOPARD', 'APPLE_XP', 'APPLE_WIN7', 'GTK_LINUX', 'QT_LINUX', 'EFL'];
     43var PLATFORMS = ['LION', 'SNOWLEOPARD', 'XP', 'VISTA', 'WIN7', 'LUCID', 'ANDROID', 'APPLE_LION', 'APPLE_SNOWLEOPARD', 'APPLE_XP', 'APPLE_WIN7', 'GTK_LINUX', 'QT_LINUX', 'EFL'];
    4444var PLATFORM_UNIONS = {
    4545    'MAC': ['SNOWLEOPARD', 'LION'],
     
    286286    if (stringContains(builderNameUpperCase, 'LINUX'))
    287287        return 'LUCID';
     288    if (stringContains(builderNameUpperCase, 'ANDROID'))
     289        return 'ANDROID';
    288290    // The interactive bot is XP, but doesn't have an OS in it's name.
    289291    if (stringContains(builderNameUpperCase, 'INTERACTIVE'))
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js

    r128077 r128321  
    191191});
    192192
    193 test('allTestsWithSamePlatformAndBuildType', 13, function() {
     193test('allTestsWithSamePlatformAndBuildType', 14, function() {
    194194    // FIXME: test that allTestsWithSamePlatformAndBuildType actually returns the right set of tests.
    195195    for (var i = 0; i < PLATFORMS.length; i++)
Note: See TracChangeset for help on using the changeset viewer.