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

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

Issue 2665503003: W3C test importer: Clean up temp repo after abort. (Closed)
Patch Set: Rebased 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.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/webkitpy/w3c/test_importer_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py
index e8da8e36bd77b9d85aee9c5ebe8f2b26217b9e47..6fc7e0ac66e9bdea3c03d3babb3e3a5a5cd8a0c2 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py
@@ -24,12 +24,12 @@ class TestImporterTest(LoggingTestCase):
return_code = importer.main(['wpt'])
self.assertEqual(return_code, 1)
self.assertLog([
- 'INFO: Noting the current Chromium commit.\n',
- ('INFO: Cloning https://chromium.googlesource.com/external/w3c/web-platform-tests.git '
- 'into /mock-checkout/third_party/WebKit/wpt.\n'),
+ 'INFO: Cloning repo: https://chromium.googlesource.com/external/w3c/web-platform-tests.git\n',
+ 'INFO: Local path: /mock-checkout/third_party/WebKit/wpt\n',
'ERROR: There were exportable but not-yet-exported commits:\n',
'ERROR: https://chromium.googlesource.com/chromium/src/+/deadbeef\n',
- 'ERROR: Aborting import to prevent clobbering these commits.\n'
+ 'ERROR: Aborting import to prevent clobbering these commits.\n',
+ 'INFO: Deleting temp repo directory /mock-checkout/third_party/WebKit/wpt.\n',
])
def test_update_test_expectations(self):
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698