Title: [286950] trunk/Tools
Revision
286950
Author
you...@apple.com
Date
2021-12-13 08:59:13 -0800 (Mon, 13 Dec 2021)

Log Message

Start websocket server for tests in http/tests that have websocket in their name
https://bugs.webkit.org/show_bug.cgi?id=234075

Reviewed by Jonathan Bedard.

Allows to run the websocket server for tests like LayoutTests/http/tests/workers/service/serviceworker-websocket.https.html.

* Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (286949 => 286950)


--- trunk/Tools/ChangeLog	2021-12-13 16:50:00 UTC (rev 286949)
+++ trunk/Tools/ChangeLog	2021-12-13 16:59:13 UTC (rev 286950)
@@ -1,5 +1,16 @@
 2021-12-13  Youenn Fablet  <you...@apple.com>
 
+        Start websocket server for tests in http/tests that have websocket in their name
+        https://bugs.webkit.org/show_bug.cgi?id=234075
+
+        Reviewed by Jonathan Bedard.
+
+        Allows to run the websocket server for tests like LayoutTests/http/tests/workers/service/serviceworker-websocket.https.html.
+
+        * Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py:
+
+2021-12-13  Youenn Fablet  <you...@apple.com>
+
         Fix ServiceWorker downloads
         https://bugs.webkit.org/show_bug.cgi?id=202142
         <rdar://problem/55721934>

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py (286949 => 286950)


--- trunk/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py	2021-12-13 16:50:00 UTC (rev 286949)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py	2021-12-13 16:59:13 UTC (rev 286950)
@@ -110,7 +110,7 @@
             Test(
                 test_file,
                 is_http_test=self.http_subdir in test_file,
-                is_websocket_test=self.websocket_subdir in test_file,
+                is_websocket_test=self.websocket_subdir in test_file or (self.http_subdir in test_file and 'websocket' in test_file),
                 is_wpt_test=(
                     self.web_platform_test_subdir in test_file
                     or self.webkit_specific_web_platform_test_subdir in test_file
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to