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

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

Issue 2822683002: [LayoutNG] Re-enable virtual/layout_ng/ (Closed)
Patch Set: Add test 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 1a2c3057584abb5b4d95a1ef4d87f29bb0c5719e..dbcd2ea84e27ede9bf4da14685572fdb4457eeb5 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
@@ -664,6 +664,9 @@ class Port(object):
return reftest_list
# Try to extract information from MANIFEST.json.
+ match = re.match(r'virtual/[^/]+/', test_name)
+ if match:
+ test_name = test_name[match.end(0):]
match = re.match(r'external/wpt/(.*)', test_name)
if not match:
return []

Powered by Google App Engine
This is Rietveld 408576698