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

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

Issue 2837083003: DevTools: create test infrastructure so devtools drives the test (Closed)
Patch Set: Created 3 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
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 f3d5b322ed5a4b5aa28ae9e786cfd216c7282b04..e3a9401be827362de711621f2eccf10e1dc8e0b1 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
@@ -725,7 +725,7 @@ class Port(object):
else:
path_in_wpt = filename
return self._wpt_manifest().is_test_file(path_in_wpt)
- if 'inspector-unit' in dirname:
+ if 'inspector-unit' in dirname or 'devtools-js' in dirname:
return filesystem.splitext(filename)[1] == '.js'
return Port._has_supported_extension(
filesystem, filename) and not Port.is_reference_html_file(filesystem, dirname, filename)

Powered by Google App Engine
This is Rietveld 408576698