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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py

Issue 2627213003: Rename LayoutTests/imported/ -> LayoutTests/external/. (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
Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
index beff964bee7f75019a42fe057d97c86d18ec08f0..b8da05cd4d9f97811ef19d98a4ff605827fb658e 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
@@ -101,9 +101,9 @@ class TestExporterTest(unittest.TestCase):
['git', 'remote'],
['git', 'remote', 'add', 'github', 'git@github.com:w3c/web-platform-tests.git'],
['git', 'rev-parse', '--show-toplevel'],
- ['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--', 'badbeef8/third_party/WebKit/LayoutTests/imported/wpt/'],
+ ['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--', 'badbeef8/third_party/WebKit/LayoutTests/external/wpt/'],
['git', 'diff-tree', '--name-only', '--no-commit-id', '-r', 'badbeef8', '--',
- '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt'],
+ '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt'],
['git', 'format-patch', '-1', '--stdout', 'badbeef8', '--', 'some', 'files'],
['git', 'reset', '--hard', 'HEAD'],
['git', 'clean', '-fdx'],
@@ -136,9 +136,9 @@ class TestExporterTest(unittest.TestCase):
['git', 'remote', 'add', 'github', 'git@github.com:w3c/web-platform-tests.git'],
['git', 'rev-parse', '--show-toplevel'],
['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--',
- 'badbeef8/third_party/WebKit/LayoutTests/imported/wpt/'],
+ 'badbeef8/third_party/WebKit/LayoutTests/external/wpt/'],
['git', 'diff-tree', '--name-only', '--no-commit-id', '-r', 'badbeef8', '--',
- '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt']])
+ '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt']])
def test_ignores_reverted_commits_with_noexport_true(self):
self.host.executive = mock_command_exec({
@@ -158,9 +158,9 @@ class TestExporterTest(unittest.TestCase):
['git', 'remote', 'add', 'github', 'git@github.com:w3c/web-platform-tests.git'],
['git', 'rev-parse', '--show-toplevel'],
['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--',
- 'badbeef8/third_party/WebKit/LayoutTests/imported/wpt/'],
+ 'badbeef8/third_party/WebKit/LayoutTests/external/wpt/'],
['git', 'diff-tree', '--name-only', '--no-commit-id', '-r', 'badbeef8', '--',
- '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt']])
+ '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt']])
def test_ignores_commits_that_start_with_import(self):
self.host.executive = mock_command_exec({
@@ -180,6 +180,6 @@ class TestExporterTest(unittest.TestCase):
['git', 'remote', 'add', 'github', 'git@github.com:w3c/web-platform-tests.git'],
['git', 'rev-parse', '--show-toplevel'],
['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--',
- 'badbeef8/third_party/WebKit/LayoutTests/imported/wpt/'],
+ 'badbeef8/third_party/WebKit/LayoutTests/external/wpt/'],
['git', 'diff-tree', '--name-only', '--no-commit-id', '-r', 'badbeef8', '--',
- '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt']])
+ '/mock-checkout/third_party/WebKit/LayoutTests/external/wpt']])

Powered by Google App Engine
This is Rietveld 408576698