Title: [91615] trunk/Tools
Revision
91615
Author
[email protected]
Date
2011-07-22 16:05:43 -0700 (Fri, 22 Jul 2011)

Log Message

Fix bug when switching from layout-tests to another test-type if
ToT webkit.org is the selected group.
* TestResultServer/static-dashboards/flakiness_dashboard.html:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (91614 => 91615)


--- trunk/Tools/ChangeLog	2011-07-22 22:59:26 UTC (rev 91614)
+++ trunk/Tools/ChangeLog	2011-07-22 23:05:43 UTC (rev 91615)
@@ -1,5 +1,11 @@
 2011-07-22  Ojan Vafai  <[email protected]>
 
+        Fix bug when switching from layout-tests to another test-type if
+        ToT webkit.org is the selected group.
+        * TestResultServer/static-dashboards/flakiness_dashboard.html:
+
+2011-07-22  Ojan Vafai  <[email protected]>
+
         Add back in line accidentally deleted in http://trac.webkit.org/changeset/91612.
         * TestResultServer/static-dashboards/flakiness_dashboard.html:
 

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


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-07-22 22:59:26 UTC (rev 91614)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html	2011-07-22 23:05:43 UTC (rev 91615)
@@ -561,7 +561,7 @@
         var builderNameUpperCase = builderName.toUpperCase();
         
         var platform = '';
-        if (g_currentState.group == '@ToT - webkit.org' && !stringContains(builderNameUpperCase, 'CHROMIUM'))
+        if (isLayoutTestResults() && g_currentState.group == '@ToT - webkit.org' && !stringContains(builderNameUpperCase, 'CHROMIUM'))
             platform = nonChromiumPlatform(builderNameUpperCase);
         else
             platform = chromiumPlatform(builderNameUpperCase);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to