| Index: tests/standalone/io/socket_exception_test.dart
|
| diff --git a/tests/standalone/io/socket_exception_test.dart b/tests/standalone/io/socket_exception_test.dart
|
| index 924822dae3e93571c9dd2fd9ac5515a557d15311..d7daa43cb58848f80651f62e3691a8fec3c13277 100644
|
| --- a/tests/standalone/io/socket_exception_test.dart
|
| +++ b/tests/standalone/io/socket_exception_test.dart
|
| @@ -183,26 +183,15 @@ class SocketExceptionTest {
|
| s.onConnect = () => Expect.fail("Connection completed");
|
| }
|
|
|
| - static void unresponsiveHostTest() {
|
| - // Port to keep the VM alive until test completes.
|
| - var port = new ReceivePort();
|
| - port.receive((message, replyTo) => null);
|
| -
|
| - Socket s = new Socket("127.0.0.1", 65535);
|
| - s.onError = (e) => port.close();
|
| - s.onConnect = () => Expect.fail("Connection completed");
|
| - }
|
| -
|
| static void testMain() {
|
| serverSocketExceptionTest();
|
| clientSocketExceptionTest();
|
| indexOutOfRangeExceptionTest();
|
| unknownHostTest();
|
| - // TODO(sgjesse): This test seems to fail on the buildbot.
|
| - //unresponsiveHostTest();
|
| }
|
| }
|
|
|
| main() {
|
| SocketExceptionTest.testMain();
|
| }
|
| +
|
|
|