Changeset 175076 in webkit


Ignore:
Timestamp:
Oct 22, 2014, 5:05:03 PM (11 years ago)
Author:
ap@apple.com
Message:

Flakiness dashboard should support OS X Yosemite
https://bugs.webkit.org/show_bug.cgi?id=137986

Reviewed by Ryosuke Niwa.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r175073 r175076  
     12014-10-22  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Flakiness dashboard should support OS X Yosemite
     4        https://bugs.webkit.org/show_bug.cgi?id=137986
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * TestResultServer/app.yaml:
     9        * TestResultServer/static-dashboards/builders.jsonp:
     10        * TestResultServer/static-dashboards/flakiness_dashboard.js:
     11
    1122014-10-22  Jake Nielsen  <jacob_nielsen@apple.com>
    213
  • trunk/Tools/TestResultServer/app.yaml

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

    r173877 r175076  
    1818                    "Apple Win 7 Debug (Tests)",
    1919                    "Apple Win 7 Release (Tests)",
     20                    "Apple Yosemite Debug WK1 (Tests)",
     21                    "Apple Yosemite Debug WK2 (Tests)",
     22                    "Apple Yosemite Release WK1 (Tests)",
     23                    "Apple Yosemite Release WK2 (Tests)",
    2024                    "EFL Linux 64-bit Release WK2",
    2125                    "GTK Linux 64-bit Debug (Tests)",
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js

    r173877 r175076  
    5656                        }
    5757                    },
     58                    'YOSEMITE': {
     59                        subPlatforms: {
     60                            'WK1': { fallbackPlatforms: ['APPLE_MAC_YOSEMITE', 'APPLE_MAC'] },
     61                            'WK2': { fallbackPlatforms: ['APPLE_MAC_YOSEMITE', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'}
     62                        }
     63                    },
    5864                }
    5965            },
     
    349355        return 'APPLE_WIN_XP';
    350356
     357    if (string.contains(builderNameUpperCase, 'YOSEMITE'))
     358        return determineWKPlatform(builderNameUpperCase, 'APPLE_YOSEMITE');
    351359    if (string.contains(builderNameUpperCase, 'MAVERICKS'))
    352360        return determineWKPlatform(builderNameUpperCase, 'APPLE_MAVERICKS');
Note: See TracChangeset for help on using the changeset viewer.