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

Unified Diff: third_party/WebKit/Tools/Scripts/wpt-import

Issue 2656903002: Move test_importer -> test_copier, deps_updater -> test_importer. (Closed)
Patch Set: Created 3 years, 11 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/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py ('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/wpt-import
diff --git a/third_party/WebKit/Tools/Scripts/wpt-import b/third_party/WebKit/Tools/Scripts/wpt-import
index 2737db24480ed6777ac5b5db2255e2e100754de7..78850d76a94b29d2b07291190bff441f770e7ddb 100755
--- a/third_party/WebKit/Tools/Scripts/wpt-import
+++ b/third_party/WebKit/Tools/Scripts/wpt-import
@@ -3,18 +3,18 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Pull latest revisions of the W3C test repos and update our DEPS entries."""
+"""Pulls the latest revisions of the web-platform-tests or csswg-test repos."""
from webkitpy.common import version_check
from webkitpy.common.host import Host
-from webkitpy.w3c.deps_updater import DepsUpdater
+from webkitpy.w3c.test_importer import TestImporter
if __name__ == '__main__':
host = Host()
- updater = DepsUpdater(host)
+ importer = TestImporter(host)
try:
- host.exit(updater.main())
+ host.exit(importer.main())
except KeyboardInterrupt:
host.print_("Interrupted, exiting")
host.exit(130)
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698