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

Unified Diff: tools/gardening/test/test_client.dart

Issue 2986223002: Add tests for BuildGroup names (Closed)
Patch Set: Updated cf. comments Created 3 years, 4 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 | « tools/gardening/test/buildbot_data_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gardening/test/test_client.dart
diff --git a/tools/gardening/test/test_client.dart b/tools/gardening/test/test_client.dart
index 679ddcc11a3847433fda90ce169944bb547907ae..d84cbb17a8d905ef96572e18bbad86e144f8fab8 100644
--- a/tools/gardening/test/test_client.dart
+++ b/tools/gardening/test/test_client.dart
@@ -33,8 +33,7 @@ class TestClient implements BuildbotClient {
String path = computePath(buildUri);
File file = new File.fromUri(Platform.script.resolve(path));
if (!file.existsSync() && _client != null) {
- await file.parent.create();
- log('Pulling $buildUri from http');
+ await file.parent.create(recursive: true);
BuildResult result = await _client.readResult(buildUri);
if (result.buildNumber != null) {
print('Writing test data to $file');
« no previous file with comments | « tools/gardening/test/buildbot_data_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698