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

Unified Diff: tools/testing/dart/multitest.dart

Issue 9190045: Add warning messages to test.dart to help debug vm tests on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make warnings nicer. Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/multitest.dart
diff --git a/tools/testing/dart/multitest.dart b/tools/testing/dart/multitest.dart
index b5febc10522f67ef4b0cebc9f8f965894b938076..9599fa370e3f22e41fa7b65a35eabdf63ab348bc 100644
--- a/tools/testing/dart/multitest.dart
+++ b/tools/testing/dart/multitest.dart
@@ -159,9 +159,11 @@ String CreateMultitestDirectory(String outputDir, String testDir) {
final String generatedTestDirectory = 'generated_tests';
Directory parentDir = new Directory(outputDir + generatedTestDirectory);
if (!new Directory(outputDir).existsSync()) {
+ print('test.dart: build dir does not exist: $outputDir');
new Directory(outputDir).createSync();
}
if (!parentDir.existsSync()) {
+ print('test.dart: generated tests dir does not exist: ${parentDir.path}');
parentDir.createSync();
}
var split = testDir.split('/');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698