Changeset 179214 in webkit


Ignore:
Timestamp:
Jan 27, 2015 2:02:36 PM (9 years ago)
Author:
ap@apple.com
Message:

Update bots on the flakiness dashboard
https://bugs.webkit.org/show_bug.cgi?id=140956

Reviewed by Ryosuke Niwa.

  • TestResultServer/static-dashboards/builders.jsonp:
  • TestResultServer/static-dashboards/flakiness_dashboard.js:
Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r179199 r179214  
     12015-01-27  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Update bots on the flakiness dashboard
     4        https://bugs.webkit.org/show_bug.cgi?id=140956
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * TestResultServer/static-dashboards/builders.jsonp:
     9        * TestResultServer/static-dashboards/flakiness_dashboard.js:
     10
    1112015-01-27  Daniel Bates  <dabates@apple.com>
    212
  • trunk/Tools/TestResultServer/app.yaml

    r175076 r179214  
    11application: webkit-test-results
    2 version: 175076
     2version: 179213
    33runtime: python
    44api_version: 1
  • trunk/Tools/TestResultServer/static-dashboards/builders.jsonp

    r175076 r179214  
    1111                    "Apple Mavericks Release WK1 (Tests)",
    1212                    "Apple Mavericks Release WK2 (Tests)",
    13                     "Apple MountainLion (Leaks)",
    14                     "Apple MountainLion Debug WK1 (Tests)",
    15                     "Apple MountainLion Debug WK2 (Tests)",
    16                     "Apple MountainLion Release WK1 (Tests)",
    17                     "Apple MountainLion Release WK2 (Tests)",
    1813                    "Apple Win 7 Debug (Tests)",
    1914                    "Apple Win 7 Release (Tests)",
     15                    "Apple Yosemite (Leaks)",
    2016                    "Apple Yosemite Debug WK1 (Tests)",
    2117                    "Apple Yosemite Debug WK2 (Tests)",
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js

    r175076 r179214  
    4444                expectationsDirectory: 'mac',
    4545                subPlatforms: {
    46                     'MOUNTAINLION': {
    47                         subPlatforms: {
    48                             'WK1': { fallbackPlatforms: ['APPLE_MAC_MOUNTAINLION', 'APPLE_MAC'] },
    49                             'WK2': { fallbackPlatforms: ['APPLE_MAC_MOUNTAINLION', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'}
    50                         }
    51                     },
    5246                    'MAVERICKS': {
    5347                        subPlatforms: {
     
    359353    if (string.contains(builderNameUpperCase, 'MAVERICKS'))
    360354        return determineWKPlatform(builderNameUpperCase, 'APPLE_MAVERICKS');
    361     if (string.contains(builderNameUpperCase, 'MOUNTAINLION'))
    362         return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_MOUNTAINLION');
    363355    if (string.contains(builderNameUpperCase, 'LION'))
    364356        return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_LION');
     
    699691            'SnowLeopard': 'SNOWLEOPARD',
    700692            'Lion': 'LION',
    701             'MountainLion': 'MOUNTAINLION',
    702693            'Win7': 'WIN7',
    703694            'XP': 'XP',
Note: See TracChangeset for help on using the changeset viewer.