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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 2950713002: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: addressed comments, 4 tests Created 3 years, 6 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 | « third_party/WebKit/LayoutTests/inspector-protocol/stylesheet-tracking-restart.js ('k') | 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/port/base.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
index 2dc24f56a23b73e37423e60615f06732a63d0173..bcfd463d77c7f927b07cc24018986fa76be6d9c3 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -728,6 +728,8 @@ class Port(object):
else:
path_in_wpt = filename
return self._wpt_manifest().is_test_file(path_in_wpt)
+ if 'inspector-protocol' in dirname and filesystem.splitext(filename)[1] == '.js':
+ return True
if 'inspector-unit' in dirname or 'devtools-js' in dirname:
return filesystem.splitext(filename)[1] == '.js'
return Port._has_supported_extension(
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector-protocol/stylesheet-tracking-restart.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698