Diff
Modified: trunk/Tools/ChangeLog (158246 => 158247)
--- trunk/Tools/ChangeLog 2013-10-30 03:11:38 UTC (rev 158246)
+++ trunk/Tools/ChangeLog 2013-10-30 03:52:23 UTC (rev 158247)
@@ -1,3 +1,10 @@
+2013-10-29 Ryosuke Niwa <[email protected]>
+
+ Add Mavericks builders to the old flakiness dashboard.
+
+ * TestResultServer/static-dashboards/builders.jsonp:
+ * TestResultServer/static-dashboards/flakiness_dashboard.js:
+
2013-10-29 Seokju Kwon <[email protected]>
Fix memory leak in Tools/DumpRenderTree/TestNetscapePlugIn/main.cpp
Modified: trunk/Tools/TestResultServer/static-dashboards/builders.jsonp (158246 => 158247)
--- trunk/Tools/TestResultServer/static-dashboards/builders.jsonp 2013-10-30 03:11:38 UTC (rev 158246)
+++ trunk/Tools/TestResultServer/static-dashboards/builders.jsonp 2013-10-30 03:52:23 UTC (rev 158247)
@@ -6,15 +6,15 @@
"tests": {
"layout-tests": {
"builders": [
- "Apple Lion Debug WK1 (Tests)",
- "Apple Lion Debug WK2 (Tests)",
- "Apple Lion Release WK1 (Tests)",
- "Apple Lion Release WK2 (Tests)",
- "Apple MountainLion (Leaks)",
+ "Apple MountainLion (Leaks)",
"Apple MountainLion Debug WK1 (Tests)",
"Apple MountainLion Debug WK2 (Tests)",
"Apple MountainLion Release WK1 (Tests)",
"Apple MountainLion Release WK2 (Tests)",
+ "Apple Mavericks Debug WK1 (Tests)",
+ "Apple Mavericks Debug WK2 (Tests)",
+ "Apple Mavericks Release WK1 (Tests)",
+ "Apple Mavericks Release WK2 (Tests)",
"Apple Win 7 Debug (Tests)",
"Apple Win 7 Release (Tests)",
"EFL Linux 64-bit Debug WK2",
Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js (158246 => 158247)
--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js 2013-10-30 03:11:38 UTC (rev 158246)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js 2013-10-30 03:52:23 UTC (rev 158247)
@@ -56,6 +56,12 @@
'WK2': { fallbackPlatforms: ['APPLE_MAC_MOUNTAINLION', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'}
}
},
+ 'MAVERICKS': {
+ subPlatforms: {
+ 'WK1': { fallbackPlatforms: ['APPLE_MAC_MAVERICKS', 'APPLE_MAC'] },
+ 'WK2': { fallbackPlatforms: ['APPLE_MAC_MAVERICKS', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'}
+ }
+ },
}
},
'WIN': {
@@ -345,11 +351,13 @@
function determineBuilderPlatform(builderNameUpperCase)
{
- if (string.contains(builderNameUpperCase, 'WINDOWS 7'))
+ if (string.contains(builderNameUpperCase, 'WIN 7'))
return 'APPLE_WIN_WIN7';
- if (string.contains(builderNameUpperCase, 'WINDOWS XP'))
+ if (string.contains(builderNameUpperCase, 'WIN XP'))
return 'APPLE_WIN_XP';
+ if (string.contains(builderNameUpperCase, 'MAVERICKS'))
+ return determineWKPlatform(builderNameUpperCase, 'APPLE_MAVERICKS');
if (string.contains(builderNameUpperCase, 'MOUNTAINLION'))
return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_MOUNTAINLION');
if (string.contains(builderNameUpperCase, 'LION'))