Changeset 175076 in webkit
- Timestamp:
- Oct 22, 2014, 5:05:03 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r175073 r175076 1 2014-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 1 12 2014-10-22 Jake Nielsen <jacob_nielsen@apple.com> 2 13 -
trunk/Tools/TestResultServer/app.yaml
r173877 r175076 1 1 application: webkit-test-results 2 version: 17 38772 version: 175076 3 3 runtime: python 4 4 api_version: 1 -
trunk/Tools/TestResultServer/static-dashboards/builders.jsonp
r173877 r175076 18 18 "Apple Win 7 Debug (Tests)", 19 19 "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)", 20 24 "EFL Linux 64-bit Release WK2", 21 25 "GTK Linux 64-bit Debug (Tests)", -
trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
r173877 r175076 56 56 } 57 57 }, 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 }, 58 64 } 59 65 }, … … 349 355 return 'APPLE_WIN_XP'; 350 356 357 if (string.contains(builderNameUpperCase, 'YOSEMITE')) 358 return determineWKPlatform(builderNameUpperCase, 'APPLE_YOSEMITE'); 351 359 if (string.contains(builderNameUpperCase, 'MAVERICKS')) 352 360 return determineWKPlatform(builderNameUpperCase, 'APPLE_MAVERICKS');
Note:
See TracChangeset
for help on using the changeset viewer.