Title: [91304] trunk/Tools
Revision
91304
Author
[email protected]
Date
2011-07-19 14:49:07 -0700 (Tue, 19 Jul 2011)

Log Message

fix flakiness dashboard for XP bots with XP in the name instead of WIN
https://bugs.webkit.org/show_bug.cgi?id=64826

Reviewed by Mihai Parparita.

* TestResultServer/static-dashboards/flakiness_dashboard.html:
* TestResultServer/static-dashboards/flakiness_dashboard_tests.js:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (91303 => 91304)


--- trunk/Tools/ChangeLog	2011-07-19 21:39:28 UTC (rev 91303)
+++ trunk/Tools/ChangeLog	2011-07-19 21:49:07 UTC (rev 91304)
@@ -1,3 +1,13 @@
+2011-07-19  Ojan Vafai  <[email protected]>
+
+        fix flakiness dashboard for XP bots with XP in the name instead of WIN
+        https://bugs.webkit.org/show_bug.cgi?id=64826
+
+        Reviewed by Mihai Parparita.
+
+        * TestResultServer/static-dashboards/flakiness_dashboard.html:
+        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
+
 2011-07-19  Cary Clark  <[email protected]>
 
         add myself to committers.py

Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html (91303 => 91304)


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-07-19 21:39:28 UTC (rev 91303)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-07-19 21:49:07 UTC (rev 91304)
@@ -544,7 +544,7 @@
             platform = 'WIN7';
         else if (stringContains(currentBuildUppercase, 'VISTA'))
             platform = 'VISTA';
-        else if (stringContains(currentBuildUppercase, 'WIN'))
+        else if (stringContains(currentBuildUppercase, 'WIN') || stringContains(currentBuildUppercase, 'XP'))
             platform = 'XP';
         else if (stringContains(currentBuildUppercase, 'LINUX'))
             platform = 'LUCID';

Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js (91303 => 91304)


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js	2011-07-19 21:39:28 UTC (rev 91303)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js	2011-07-19 21:49:07 UTC (rev 91304)
@@ -209,6 +209,7 @@
     runPlatformAndBuildTypeTest('GPU Win7 Tests (dbg)(1) - GPU', 'WIN7', 'DEBUG');
     runPlatformAndBuildTypeTest('GPU Win7 Tests (dbg)(2) - GPU', 'WIN7', 'DEBUG');
     runPlatformAndBuildTypeTest('GPU Linux Tests x64 - GPU', 'LUCID', 'RELEASE');
+    runPlatformAndBuildTypeTest('XP Tests', 'XP', 'RELEASE');
 }
 
 function runTests()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to