Title: [95046] trunk/Tools
Revision
95046
Author
[email protected]
Date
2011-09-13 14:50:01 -0700 (Tue, 13 Sep 2011)

Log Message

[chromium] fix flakiness dashboard for chromium interactive tests
https://bugs.webkit.org/show_bug.cgi?id=68029

Reviewed by Tony Chang.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (95045 => 95046)


--- trunk/Tools/ChangeLog	2011-09-13 21:43:13 UTC (rev 95045)
+++ trunk/Tools/ChangeLog	2011-09-13 21:50:01 UTC (rev 95046)
@@ -1,3 +1,13 @@
+2011-09-13  Ojan Vafai  <[email protected]>
+
+        [chromium] fix flakiness dashboard for chromium interactive tests
+        https://bugs.webkit.org/show_bug.cgi?id=68029
+
+        Reviewed by Tony Chang.
+
+        * TestResultServer/static-dashboards/flakiness_dashboard.html:
+        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
+
 2011-09-13  Ryosuke Niwa  <[email protected]>
 
         Add Alice and Aryeh to the list of contributors.

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


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-09-13 21:43:13 UTC (rev 95045)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-09-13 21:50:01 UTC (rev 95046)
@@ -539,6 +539,9 @@
         return 'XP';
     if (stringContains(builderNameUpperCase, 'LINUX'))
         return 'LUCID';
+    // The interactive bot is XP, but doesn't have an OS in it's name.
+    if (stringContains(builderNameUpperCase, 'INTERACTIVE'))
+        return 'XP';
 }
 
 

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


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js	2011-09-13 21:43:13 UTC (rev 95045)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js	2011-09-13 21:50:01 UTC (rev 95046)
@@ -206,6 +206,7 @@
     runPlatformAndBuildTypeTest('GPU Win7 Tests (dbg)(2) - GPU', 'WIN7', 'DEBUG');
     runPlatformAndBuildTypeTest('GPU Linux Tests x64 - GPU', 'LUCID', 'RELEASE');
     runPlatformAndBuildTypeTest('XP Tests', 'XP', 'RELEASE');
+    runPlatformAndBuildTypeTest('Interactive Tests (dbg)', 'XP', 'DEBUG');
     
     g_currentState.group = '@ToT - webkit.org';
     runPlatformAndBuildTypeTest('Chromium Win Release (Tests)', 'XP', 'RELEASE');
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to