Title: [175076] trunk/Tools
- Revision
- 175076
- Author
- [email protected]
- Date
- 2014-10-22 17:05:03 -0700 (Wed, 22 Oct 2014)
Log 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:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (175075 => 175076)
--- trunk/Tools/ChangeLog 2014-10-22 23:48:38 UTC (rev 175075)
+++ trunk/Tools/ChangeLog 2014-10-23 00:05:03 UTC (rev 175076)
@@ -1,3 +1,14 @@
+2014-10-22 Alexey Proskuryakov <[email protected]>
+
+ 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:
+
2014-10-22 Jake Nielsen <[email protected]>
commitqueuetask should include more tests to ensure that the behavior
Modified: trunk/Tools/TestResultServer/app.yaml (175075 => 175076)
--- trunk/Tools/TestResultServer/app.yaml 2014-10-22 23:48:38 UTC (rev 175075)
+++ trunk/Tools/TestResultServer/app.yaml 2014-10-23 00:05:03 UTC (rev 175076)
@@ -1,5 +1,5 @@
application: webkit-test-results
-version: 173877
+version: 175076
runtime: python
api_version: 1
Modified: trunk/Tools/TestResultServer/static-dashboards/builders.jsonp (175075 => 175076)
--- trunk/Tools/TestResultServer/static-dashboards/builders.jsonp 2014-10-22 23:48:38 UTC (rev 175075)
+++ trunk/Tools/TestResultServer/static-dashboards/builders.jsonp 2014-10-23 00:05:03 UTC (rev 175076)
@@ -17,6 +17,10 @@
"Apple MountainLion Release WK2 (Tests)",
"Apple Win 7 Debug (Tests)",
"Apple Win 7 Release (Tests)",
+ "Apple Yosemite Debug WK1 (Tests)",
+ "Apple Yosemite Debug WK2 (Tests)",
+ "Apple Yosemite Release WK1 (Tests)",
+ "Apple Yosemite Release WK2 (Tests)",
"EFL Linux 64-bit Release WK2",
"GTK Linux 64-bit Debug (Tests)",
"GTK Linux 64-bit Release (Tests)"
Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js (175075 => 175076)
--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js 2014-10-22 23:48:38 UTC (rev 175075)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js 2014-10-23 00:05:03 UTC (rev 175076)
@@ -55,6 +55,12 @@
'WK2': { fallbackPlatforms: ['APPLE_MAC_MAVERICKS', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'}
}
},
+ 'YOSEMITE': {
+ subPlatforms: {
+ 'WK1': { fallbackPlatforms: ['APPLE_MAC_YOSEMITE', 'APPLE_MAC'] },
+ 'WK2': { fallbackPlatforms: ['APPLE_MAC_YOSEMITE', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'}
+ }
+ },
}
},
'WIN': {
@@ -348,6 +354,8 @@
if (string.contains(builderNameUpperCase, 'WIN XP'))
return 'APPLE_WIN_XP';
+ if (string.contains(builderNameUpperCase, 'YOSEMITE'))
+ return determineWKPlatform(builderNameUpperCase, 'APPLE_YOSEMITE');
if (string.contains(builderNameUpperCase, 'MAVERICKS'))
return determineWKPlatform(builderNameUpperCase, 'APPLE_MAVERICKS');
if (string.contains(builderNameUpperCase, 'MOUNTAINLION'))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes