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

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

Issue 17381002: Increase test size of directory_list_pause_test, to avoid flakyness on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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/directory_list_pause_test.dart
diff --git a/tests/standalone/io/directory_list_pause_test.dart b/tests/standalone/io/directory_list_pause_test.dart
index 74779abf676412b10a77b787664cff699c9e028e..6559dbf977d51564edccda99970a9811ceaf4dbc 100644
--- a/tests/standalone/io/directory_list_pause_test.dart
+++ b/tests/standalone/io/directory_list_pause_test.dart
@@ -11,7 +11,7 @@ import "dart:isolate";
void testPauseList() {
var keepAlive = new ReceivePort();
// TOTAL should be bigger the our directory listing buffer.
- const int TOTAL = 128;
+ const int TOTAL = 256;
new Directory("").createTemp().then((d) {
for (int i = 0; i < TOTAL; i++) {
new Directory("${d.path}/$i").createSync();
@@ -37,7 +37,6 @@ void testPauseList() {
}, onDone: () {
Expect.notEquals(TOTAL, count);
Expect.isTrue(count > 0);
- keepAlive.close();
d.delete(recursive: true).then((ignore) => keepAlive.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