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

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

Issue 2822683002: [LayoutNG] Re-enable virtual/layout_ng/ (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
« no previous file with comments | « third_party/WebKit/LayoutTests/virtual/layout_ng/external/wpt/css/css21/linebox/README.txt ('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 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)
tkent 2017/04/14 06:58:32 Please add a test case for virtual/ in test_refere
kojii 2017/04/14 08:02:59 Done, thank you for the detailed support!
+ if match:
+ test_name = test_name[match.end(0):]
match = re.match(r'external/wpt/(.*)', test_name)
if not match:
return []
« no previous file with comments | « third_party/WebKit/LayoutTests/virtual/layout_ng/external/wpt/css/css21/linebox/README.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698