Chromium Code Reviews| Index: tools/testing/dart/test_suite.dart |
| =================================================================== |
| --- tools/testing/dart/test_suite.dart (revision 17743) |
| +++ tools/testing/dart/test_suite.dart (working copy) |
| @@ -1122,12 +1122,12 @@ |
| var minified = configuration['minified'] ? '-minified' : ''; |
| var dirName = "${configuration['compiler']}-${configuration['runtime']}" |
| "$checked$minified"; |
| - Path generatedTestPath = new Path(dartDir.toNativePath()) |
| - .append(buildDir) |
| + Path generatedTestPath = new Path(buildDir) |
| .append('generated_tests') |
| .append(dirName) |
| .append(testUniqueName); |
| + print(generatedTestPath.toString()); |
|
kustermann
2013/01/29 12:29:30
same here.
|
| TestUtils.mkdirRecursive(new Path('.'), generatedTestPath); |
| return new File.fromPath(generatedTestPath).fullPathSync() |
| .replaceAll('\\', '/'); |