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

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

Issue 19558010: Increase timeout in http_response_deadline_test, to avoid ARM simulator hitting it. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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/http_response_deadline_test.dart
diff --git a/tests/standalone/io/http_response_deadline_test.dart b/tests/standalone/io/http_response_deadline_test.dart
index 2d3852fc2845361cad9c9f25ad270973141acf99..ee14d0e6fab1b16e0c0741b9b9721e612f70e3b8 100644
--- a/tests/standalone/io/http_response_deadline_test.dart
+++ b/tests/standalone/io/http_response_deadline_test.dart
@@ -14,7 +14,7 @@ import "dart:io";
void testSimpleDeadline(int connections) {
HttpServer.bind('localhost', 0).then((server) {
server.listen((request) {
- request.response.deadline = const Duration(seconds: 1);
+ request.response.deadline = const Duration(seconds: 10);
request.response.write("stuff");
request.response.close();
});
« 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