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

Unified Diff: sdk/lib/_internal/pub/test/io_test.dart

Issue 211373003: Speed up directory listing in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
Index: sdk/lib/_internal/pub/test/io_test.dart
diff --git a/sdk/lib/_internal/pub/test/io_test.dart b/sdk/lib/_internal/pub/test/io_test.dart
index bc8d708afb0a0e8ec4c592e21cafd3e96639119c..75e012d0b3f99723d913e9341c407b870e85dbac 100644
--- a/sdk/lib/_internal/pub/test/io_test.dart
+++ b/sdk/lib/_internal/pub/test/io_test.dart
@@ -115,7 +115,11 @@ main() {
expect(listDir(temp, recursive: true), unorderedEquals([
path.join(temp, 'file1.txt'),
- path.join(temp, 'linkdir')
+ path.join(temp, 'linkdir'),
+ // dart:io documents that recursive symlinks will cause entries to
+ // appear twice.
+ path.join(temp, 'linkdir/file1.txt'),
+ path.join(temp, 'linkdir/linkdir')
]));
}), completes);
});
« sdk/lib/_internal/pub/lib/src/io.dart ('K') | « sdk/lib/_internal/pub/lib/src/io.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698