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

Unified Diff: tests/standalone/io/raw_datagram_socket_test.dart

Issue 1382993005: Don't run larger datagram tests on Mac OS (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+ }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698