| Index: tests/standalone/io/file_read_special_device_test.dart
|
| diff --git a/tests/standalone/io/file_read_special_device_test.dart b/tests/standalone/io/file_read_special_device_test.dart
|
| index 1ea10e9eaf71cb8ac8d5c36987318054a8c580b4..c32db08841aef818375657f71a97dab2e414efe6 100644
|
| --- a/tests/standalone/io/file_read_special_device_test.dart
|
| +++ b/tests/standalone/io/file_read_special_device_test.dart
|
| @@ -24,5 +24,8 @@ void testReadStdio() {
|
| }
|
|
|
| void main() {
|
| - testReadStdio();
|
| + // Special unix devices do not exist on Windows.
|
| + if (Platform.operatingSystem != 'windows') {
|
| + testReadStdio();
|
| + }
|
| }
|
|
|