⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286950 in webkit


Ignore:
Timestamp:
Dec 13, 2021, 8:59:13 AM (5 years ago)
Author:
youenn@apple.com
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r286944 r286950  
     12021-12-13  Youenn Fablet  <youenn@apple.com>
     2
     3        Start websocket server for tests in http/tests that have websocket in their name
     4        https://bugs.webkit.org/show_bug.cgi?id=234075
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        Allows to run the websocket server for tests like LayoutTests/http/tests/workers/service/serviceworker-websocket.https.html.
     9
     10        * Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py:
     11
    1122021-12-13  Youenn Fablet  <youenn@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py

    r284595 r286950  
    111111                test_file,
    112112                is_http_test=self.http_subdir in test_file,
    113                 is_websocket_test=self.websocket_subdir in test_file,
     113                is_websocket_test=self.websocket_subdir in test_file or (self.http_subdir in test_file and 'websocket' in test_file),
    114114                is_wpt_test=(
    115115                    self.web_platform_test_subdir in test_file
Note: See TracChangeset for help on using the changeset viewer.