Chromium Code Reviews| Index: tests/standalone/io/raw_datagram_socket_test.dart |
| diff --git a/tests/standalone/io/raw_datagram_socket_test.dart b/tests/standalone/io/raw_datagram_socket_test.dart |
| index fd5495cc09666da4b6a0a3a28b98cf0a0e18e602..20d841e19515068223f8b0a0636182137eb9a533 100644 |
| --- a/tests/standalone/io/raw_datagram_socket_test.dart |
| +++ b/tests/standalone/io/raw_datagram_socket_test.dart |
| @@ -322,8 +322,10 @@ main() { |
| testLoopbackMulticast(); |
| testSendReceive(InternetAddress.LOOPBACK_IP_V4, 1000); |
| testSendReceive(InternetAddress.LOOPBACK_IP_V6, 1000); |
| - testSendReceive(InternetAddress.LOOPBACK_IP_V4, 32 * 1024); |
| - testSendReceive(InternetAddress.LOOPBACK_IP_V6, 32 * 1024); |
| - testSendReceive(InternetAddress.LOOPBACK_IP_V4, 64 * 1024 - 32); |
| - testSendReceive(InternetAddress.LOOPBACK_IP_V6, 64 * 1024 - 32); |
| + if (!Platform.isMacOS) { |
|
kustermann
2015/10/06 08:21:29
Maybe add a comment about why they fail (I assume
|
| + testSendReceive(InternetAddress.LOOPBACK_IP_V4, 32 * 1024); |
| + testSendReceive(InternetAddress.LOOPBACK_IP_V6, 32 * 1024); |
| + testSendReceive(InternetAddress.LOOPBACK_IP_V4, 64 * 1024 - 32); |
| + testSendReceive(InternetAddress.LOOPBACK_IP_V6, 64 * 1024 - 32); |
| + } |
| } |