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

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

Issue 11666006: Disable some testing on Windows while examining the problem (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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_content_length_test.dart
diff --git a/tests/standalone/io/http_content_length_test.dart b/tests/standalone/io/http_content_length_test.dart
index 1adc6869679597219a2d299d186af14577a3f71d..76bd0d9bc6b30a586effad5ae7db2dd1b619dbc2 100644
--- a/tests/standalone/io/http_content_length_test.dart
+++ b/tests/standalone/io/http_content_length_test.dart
@@ -193,7 +193,10 @@ void main() {
testNoBody(5, true);
testBody(5, false);
testBody(5, true);
- testBodyChunked(5, false);
- testBodyChunked(5, true);
+ // These tests can fail or timeout on Windows, issue 7562.
+ if (Platform.operatingSystem != 'windows') {
+ testBodyChunked(5, false);
+ testBodyChunked(5, true);
+ }
testHttp10();
}
« 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