| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| index e50887340a7fc140acfbe0b3f84e3a9f2c4f7c1d..4f203f7b6852436682e9e0da8b504bd93249a1ea 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| @@ -27,6 +27,7 @@ from webkitpy.w3c.directory_owners_extractor import DirectoryOwnersExtractor
|
| from webkitpy.w3c.local_wpt import LocalWPT
|
| from webkitpy.w3c.test_copier import TestCopier
|
| from webkitpy.w3c.wpt_expectations_updater import WPTExpectationsUpdater
|
| +from webkitpy.w3c.wpt_manifest import WPTManifest
|
|
|
| # Settings for how often to check try job results and how long to wait.
|
| POLL_DELAY_SECONDS = 2 * 60
|
| @@ -193,12 +194,11 @@ class TestImporter(object):
|
| Runs the (newly-updated) manifest command if it's found, and then
|
| stages the generated MANIFEST.json in the git index, ready to commit.
|
| """
|
| - manifest_command = self.finder.path_from_webkit_base('Tools', 'Scripts', 'webkitpy', 'thirdparty', 'wpt', 'wpt', 'manifest')
|
| if 'css' in dest_path:
|
| # Do nothing for csswg-test.
|
| return
|
| _log.info('Generating MANIFEST.json')
|
| - self.run([manifest_command, '--work', '--tests-root', dest_path])
|
| + WPTManifest.generate_manifest(self.host, dest_path)
|
| self.run(['git', 'add', self.fs.join(dest_path, 'MANIFEST.json')])
|
|
|
| def update(self, dest_dir_name, temp_repo_path, revision):
|
|
|