Title: [212552] trunk/Tools
Revision
212552
Author
aakash_j...@apple.com
Date
2017-02-17 09:09:52 -0800 (Fri, 17 Feb 2017)

Log Message

Fix tools that were broken by Efl removal
https://bugs.webkit.org/show_bug.cgi?id=168496

Reviewed by Alexey Proskuryakov.

* QueueStatusServer/config/queues.py:
* Scripts/webkitpy/common/config/ews.json:
* TestResultServer/static-dashboards/builders.jsonp:
* TestResultServer/static-dashboards/flakiness_dashboard.js:
* TestResultServer/static-dashboards/loader_unittests.js:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (212551 => 212552)


--- trunk/Tools/ChangeLog	2017-02-17 16:25:56 UTC (rev 212551)
+++ trunk/Tools/ChangeLog	2017-02-17 17:09:52 UTC (rev 212552)
@@ -1,3 +1,16 @@
+2017-02-17  Aakash Jain  <aakash_j...@apple.com>
+
+        Fix tools that were broken by Efl removal
+        https://bugs.webkit.org/show_bug.cgi?id=168496
+
+        Reviewed by Alexey Proskuryakov.
+
+        * QueueStatusServer/config/queues.py:
+        * Scripts/webkitpy/common/config/ews.json:
+        * TestResultServer/static-dashboards/builders.jsonp:
+        * TestResultServer/static-dashboards/flakiness_dashboard.js:
+        * TestResultServer/static-dashboards/loader_unittests.js:
+
 2017-02-16  Lucas Forschler  <lforsch...@apple.com>
 
         https://bugs.webkit.org/show_bug.cgi?id=168442

Modified: trunk/Tools/QueueStatusServer/config/queues.py (212551 => 212552)


--- trunk/Tools/QueueStatusServer/config/queues.py	2017-02-17 16:25:56 UTC (rev 212551)
+++ trunk/Tools/QueueStatusServer/config/queues.py	2017-02-17 17:09:52 UTC (rev 212552)
@@ -41,7 +41,6 @@
     "mac-debug-ews",
     "mac-32bit-ews",
     "win-ews",
-    "efl-wk2-ews",
 ]
 
 # If the patch is still active after this much time, then a bot must have frozen or rebooted,

Modified: trunk/Tools/Scripts/webkitpy/common/config/ews.json (212551 => 212552)


--- trunk/Tools/Scripts/webkitpy/common/config/ews.json	2017-02-17 16:25:56 UTC (rev 212551)
+++ trunk/Tools/Scripts/webkitpy/common/config/ews.json	2017-02-17 17:09:52 UTC (rev 212552)
@@ -5,12 +5,6 @@
             "xan.lo...@gmail.com"
         ]
     },
-    "EFL WK2 EWS": {
-        "port": "efl-wk2",
-        "watchers": [
-            "gyuyoung....@webkit.org"
-        ]
-    },
     "Win EWS": {
         "port": "win",
         "watchers": [

Modified: trunk/Tools/TestResultServer/static-dashboards/builders.jsonp (212551 => 212552)


--- trunk/Tools/TestResultServer/static-dashboards/builders.jsonp	2017-02-17 16:25:56 UTC (rev 212551)
+++ trunk/Tools/TestResultServer/static-dashboards/builders.jsonp	2017-02-17 17:09:52 UTC (rev 212552)
@@ -21,9 +21,9 @@
                     "Apple iOS 10 Simulator Debug WK2 (Tests)", 
                     "Apple iOS 10 Simulator Release WK1 (Tests)", 
                     "Apple iOS 10 Simulator Release WK2 (Tests)", 
-                    "EFL Linux 64-bit Release WK2", 
                     "GTK Linux 64-bit Debug (Tests)", 
-                    "GTK Linux 64-bit Release (Tests)"
+                    "GTK Linux 64-bit Release (Tests)",
+                    "GTK Linux 64-bit Release Wayland (Tests)"
                 ]
             }
         }, 

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


--- trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js	2017-02-17 16:25:56 UTC (rev 212551)
+++ trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js	2017-02-17 17:09:52 UTC (rev 212552)
@@ -77,16 +77,6 @@
             }
         }
     },
-    'EFL': {
-        expectationsDirectory: 'efl',
-        subPlatforms: {
-            'LINUX': {
-                subPlatforms: {
-                    'WK2': { fallbackPlatforms: ['EFL', 'WK2'], expectationsDirectory: 'efl-wk2' }
-                }
-            }
-        }
-    },
     'WK2': {
         basePlatform: true,
         expectationsDirectory: 'wk2'
@@ -360,8 +350,6 @@
         return determineWKPlatform(builderNameUpperCase, 'APPLE_IOS_SIMULATOR');
     if (string.contains(builderNameUpperCase, 'GTK LINUX'))
         return determineWKPlatform(builderNameUpperCase, 'GTK_LINUX');
-    if (string.contains(builderNameUpperCase, 'EFL'))
-        return determineWKPlatform(builderNameUpperCase, 'EFL_LINUX');
 }
 
 function platformAndBuildType(builderName)

Modified: trunk/Tools/TestResultServer/static-dashboards/loader_unittests.js (212551 => 212552)


--- trunk/Tools/TestResultServer/static-dashboards/loader_unittests.js	2017-02-17 16:25:56 UTC (rev 212551)
+++ trunk/Tools/TestResultServer/static-dashboards/loader_unittests.js	2017-02-17 17:09:52 UTC (rev 212552)
@@ -82,7 +82,7 @@
 test('expectations files loading', 1, function() {
     resetGlobals();
     g_history.parseCrossDashboardParameters();
-    var expectedLoadedPlatforms = ["efl", "efl-wk2", "gtk", "gtk-wk2",
+    var expectedLoadedPlatforms = ["gtk", "gtk-wk2",
         "mac", "mac-lion", "mac-wk2", "mac-wk2", "win", "wk2"];
     var loadedPlatforms = [];
     var resourceLoader = new loader.Loader();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to