| Index: tests/standalone/io/directory_list_sync_test.dart
|
| ===================================================================
|
| --- tests/standalone/io/directory_list_sync_test.dart (revision 35982)
|
| +++ tests/standalone/io/directory_list_sync_test.dart (working copy)
|
| @@ -6,8 +6,9 @@
|
|
|
| void main() {
|
| File script = new File.fromUri(Platform.script);
|
| - // tests/standalone/io/../../..
|
| - Directory startingDir = script.parent.parent.parent.parent;
|
| + // tests/standalone/io/../..
|
| + Directory startingDir = script.parent.parent.parent;
|
| + print("Recursively listing entries in directory ${startingDir.path} ...");
|
| List<FileSystemEntity> each =
|
| startingDir.listSync(recursive: true, followLinks: false);
|
| print("Found: ${each.length} entities");
|
|
|