| Index: tests/standalone/io/file_system_links_test.dart
|
| diff --git a/tests/standalone/io/file_system_links_test.dart b/tests/standalone/io/file_system_links_test.dart
|
| index 2230c0773b536feefbdae6ab8e616f68861b0e49..afe8996c0f558d91da9db70e5680dfdd707d5f3b 100644
|
| --- a/tests/standalone/io/file_system_links_test.dart
|
| +++ b/tests/standalone/io/file_system_links_test.dart
|
| @@ -239,11 +239,14 @@ testDirectoryListingBrokenLink() {
|
|
|
|
|
| main() {
|
| - testFileExistsCreate();
|
| - testFileDelete();
|
| - testFileWriteRead();
|
| - testDirectoryExistsCreate();
|
| - testDirectoryDelete();
|
| - testDirectoryListing();
|
| - testDirectoryListingBrokenLink();
|
| + // Links on Windows are tested by windows_file_system_[async_]links_test.
|
| + if (Platform.operatingSystem != 'windows') {
|
| + testFileExistsCreate();
|
| + testFileDelete();
|
| + testFileWriteRead();
|
| + testDirectoryExistsCreate();
|
| + testDirectoryDelete();
|
| + testDirectoryListing();
|
| + testDirectoryListingBrokenLink();
|
| + }
|
| }
|
|
|