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

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

Issue 23568002: Update checked-in binary to 0.6.21.3_r26639 (M6) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « dart/tools/testing/dart/status_file_parser.dart ('k') | dart/tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/test_progress.dart
diff --git a/dart/tools/testing/dart/test_progress.dart b/dart/tools/testing/dart/test_progress.dart
index d0b5aefe3ddc193e54b8cac7c4f557bbef5075e9..104f88c788ff84d115376ee24693b1a646369932 100644
--- a/dart/tools/testing/dart/test_progress.dart
+++ b/dart/tools/testing/dart/test_progress.dart
@@ -338,7 +338,7 @@ class LeftOverTempDirPrinter extends EventListener {
void allDone() {
var count = 0;
var systemTempDir = _tempDir();
- var lister = new Directory.fromPath(systemTempDir).list().listen(
+ var lister = new Directory(systemTempDir.toNativePath()).list().listen(
(FileSystemEntity fse) {
if (fse is Directory) count++;
},
« no previous file with comments | « dart/tools/testing/dart/status_file_parser.dart ('k') | dart/tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698