|
Lines 517-522
class Port(object):
a/Tools/Scripts/webkitpy/port/base.py_sec1
|
| 517 |
reftest_list_path = filesystem.join(test_dirpath, 'reftest.list') |
517 |
reftest_list_path = filesystem.join(test_dirpath, 'reftest.list') |
| 518 |
if not filesystem.isfile(reftest_list_path): |
518 |
if not filesystem.isfile(reftest_list_path): |
| 519 |
return None |
519 |
return None |
|
|
520 |
|
| 521 |
# FIXME: We should stop parsing reftest.list files. Only two directories need them: webkit.org/b/203783 |
| 522 |
encoding_tests_subpath = os.path.join('imported', 'w3c', 'web-platform-tests', 'encoding') |
| 523 |
webvtt_tests_subpath = os.path.join('media', 'track', 'opera', 'track', 'webvtt', 'rendering', 'reftest') |
| 524 |
if encoding_tests_subpath not in test_dirpath and webvtt_tests_subpath not in test_dirpath: |
| 525 |
_log.debug("Ignoring reftest.list file in {}".format(reftest_list_path)) |
| 526 |
return None |
| 527 |
|
| 520 |
reftest_list_file = filesystem.read_text_file(reftest_list_path) |
528 |
reftest_list_file = filesystem.read_text_file(reftest_list_path) |
| 521 |
|
529 |
|
| 522 |
parsed_list = {} |
530 |
parsed_list = {} |