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

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

Issue 23589004: Increase timeout for http_response_deadline_test, to make it stable on DebugSIMARM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix status file. Created 7 years, 3 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 | tests/standalone/standalone.status » ('j') | 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 ee14d0e6fab1b16e0c0741b9b9721e612f70e3b8..5f537936583ce3ae124dc2d0646dd50d3ff36ee6 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: 10);
+ request.response.deadline = const Duration(seconds: 1000);
request.response.write("stuff");
request.response.close();
});
« no previous file with comments | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698