| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // | 4 // |
| 5 // VMOptions= | 5 // VMOptions= |
| 6 // VMOptions=--short_socket_read | 6 // VMOptions=--short_socket_read |
| 7 // VMOptions=--short_socket_write | 7 // VMOptions=--short_socket_write |
| 8 // VMOptions=--short_socket_read --short_socket_write | 8 // VMOptions=--short_socket_read --short_socket_write |
| 9 | 9 |
| 10 #import("dart:isolate"); | 10 #import("dart:isolate"); |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 testGET(); | 405 testGET(); |
| 406 testPOST(true); | 406 testPOST(true); |
| 407 testPOST(false); | 407 testPOST(false); |
| 408 testReadInto(true); | 408 testReadInto(true); |
| 409 testReadInto(false); | 409 testReadInto(false); |
| 410 testReadShort(true); | 410 testReadShort(true); |
| 411 testReadShort(false); | 411 testReadShort(false); |
| 412 test404(); | 412 test404(); |
| 413 testReasonPhrase(); | 413 testReasonPhrase(); |
| 414 } | 414 } |
| OLD | NEW |