Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1305)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

Issue 1861313002: LayouTests: Run virtual http/tests as http tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: restore other conditions Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
index d7243538bfbca80bbe910ea2894ba34d84cb3729..b2fa663aa4e3b58b96fe5d60fb0900923f09f884 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
@@ -84,8 +84,6 @@ class Manager(object):
self.INSPECTOR_SUBDIR = 'inspector' + port.TEST_PATH_SEPARATOR
self.PERF_SUBDIR = 'perf'
self.WEBSOCKET_SUBDIR = 'websocket' + port.TEST_PATH_SEPARATOR
- self.VIRTUAL_HTTP_SUBDIR = port.TEST_PATH_SEPARATOR.join([
- 'virtual', 'stable', 'http'])
self.LAYOUT_TESTS_DIRECTORY = 'LayoutTests'
self.ARCHIVED_RESULTS_LIMIT = 25
self._http_server_started = False
@@ -225,7 +223,7 @@ class Manager(object):
return (
test.startswith(self.HTTP_SUBDIR) or
self._is_websocket_test(test) or
- self.VIRTUAL_HTTP_SUBDIR in test
+ self._port.TEST_PATH_SEPARATOR + self.HTTP_SUBDIR in test
)
def _is_inspector_test(self, test):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698