Changeset 286950 in webkit
- Timestamp:
- Dec 13, 2021, 8:59:13 AM (5 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r286944 r286950 1 2021-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 1 12 2021-12-13 Youenn Fablet <youenn@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/layout_tests/controllers/layout_test_finder_legacy.py
r284595 r286950 111 111 test_file, 112 112 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), 114 114 is_wpt_test=( 115 115 self.web_platform_test_subdir in test_file
Note:
See TracChangeset
for help on using the changeset viewer.