Title: [190523] trunk/Tools
Revision
190523
Author
[email protected]
Date
2015-10-02 14:38:57 -0700 (Fri, 02 Oct 2015)

Log Message

Flakiness dashboard should support OS X El Capitan
https://bugs.webkit.org/show_bug.cgi?id=149648

Patch by Aakash Jain <[email protected]> on 2015-10-02
Reviewed by Alexey Proskuryakov.

* TestResultServer/static-dashboards/flakiness_dashboard.js: Fix the broken dashboard for ElCapitan.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (190522 => 190523)


--- trunk/Tools/ChangeLog	2015-10-02 21:16:20 UTC (rev 190522)
+++ trunk/Tools/ChangeLog	2015-10-02 21:38:57 UTC (rev 190523)
@@ -1,3 +1,12 @@
+2015-10-02  Aakash Jain  <[email protected]>
+
+        Flakiness dashboard should support OS X El Capitan
+        https://bugs.webkit.org/show_bug.cgi?id=149648
+
+        Reviewed by Alexey Proskuryakov.
+
+        * TestResultServer/static-dashboards/flakiness_dashboard.js: Fix the broken dashboard for ElCapitan.
+
 2015-10-02  Daniel Bates  <[email protected]>
 
         Fix run-webkit-tests --ios-simulator after <http://trac.webkit.org/changeset/190515>

Modified: trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js (190522 => 190523)


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js	2015-10-02 21:16:20 UTC (rev 190522)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js	2015-10-02 21:38:57 UTC (rev 190523)
@@ -354,7 +354,7 @@
     if (string.contains(builderNameUpperCase, 'WIN XP'))
         return 'APPLE_WIN_XP';
 
-    if (string.contains(builderNameUpperCase, 'ELCAPITAN'))
+    if (string.contains(builderNameUpperCase, 'EL CAPITAN'))
         return determineWKPlatform(builderNameUpperCase, 'APPLE_ELCAPITAN');
     if (string.contains(builderNameUpperCase, 'YOSEMITE'))
         return determineWKPlatform(builderNameUpperCase, 'APPLE_YOSEMITE');
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to