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

Unified Diff: tests/standalone/io/regress-6521.dart

Issue 11733005: Enable a couple of tests that were disabled because they (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 12 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 | « tests/standalone/io/regress-1925.dart ('k') | tests/standalone/io/regress_6521_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/regress-6521.dart
diff --git a/tests/standalone/io/regress-6521.dart b/tests/standalone/io/regress-6521.dart
deleted file mode 100644
index a02025d2cb74ad103b4f4440d687cc7b66adf021..0000000000000000000000000000000000000000
--- a/tests/standalone/io/regress-6521.dart
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-//
-// Regression test for http://code.google.com/p/dart/issues/detail?id=6393.
-
-import "dart:io";
-import "dart:uri";
-
-var client = new HttpClient();
-var clientRequest;
-
-void main() {
- var server = new HttpServer();
- server.listen("127.0.0.1", 0);
- server.defaultRequestHandler = (req, rsp) {
- req.inputStream.onData = () {
- req.inputStream.read();
- rsp.outputStream.close();
- };
- req.inputStream.onClosed = () {
- client.shutdown();
- server.close();
- };
- };
-
- var connection = client.openUrl(
- "POST",
- new Uri.fromString("http://localhost:${server.port}/"));
- connection.onRequest = (request) {
- // Keep a reference to the client request object.
- clientRequest = request;
- request.outputStream.write([0]);
- };
- connection.onResponse = (response) {
- response.inputStream.onClosed = () {
- // Wait with closing the client request until the response is done.
- clientRequest.outputStream.close();
- };
- };
-}
« no previous file with comments | « tests/standalone/io/regress-1925.dart ('k') | tests/standalone/io/regress_6521_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698