Chromium Code Reviews| 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 [] |