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

Unified Diff: pkg/barback/test/package_graph/repetition_test.dart

Issue 49223004: Revise several already-committed CLs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
Index: pkg/barback/test/package_graph/repetition_test.dart
diff --git a/pkg/barback/test/package_graph/repetition_test.dart b/pkg/barback/test/package_graph/repetition_test.dart
index cd9844049aaa42e72676ea80d4cbcf517d1bc47a..106a7074847106b087483779375ee5a296f5e4fd 100644
--- a/pkg/barback/test/package_graph/repetition_test.dart
+++ b/pkg/barback/test/package_graph/repetition_test.dart
@@ -9,6 +9,12 @@ import 'package:scheduled_test/scheduled_test.dart';
import '../utils.dart';
+// This tests the behavior of barback under many operations happening in quick
+// succession. Since Barback is so asynchronous, it's easy for it to have subtle
+// dependencies on the commonly-used and -tested usage patterns. These tests
+// exist to stress-test less-common usage patterns in order root out additional
Bob Nystrom 2013/10/29 17:25:29 "order root" -> "order to root".
nweiz 2013/10/29 19:27:26 Done.
+// bugs.
+
main() {
initConfig();
@@ -45,7 +51,7 @@ main() {
initGraph(["app|foo.txt"], {"app": [[rewrite]]});
updateSources(["app|foo.txt"]);
- for (var i = 0; i < 1; i++) {
+ for (var i = 0; i < 1000; i++) {
updateTransformers("app", [[rewrite]]);
}
@@ -58,7 +64,7 @@ main() {
initGraph(["app|foo.txt"], {"app": [[rewrite]]});
updateSources(["app|foo.txt"]);
- for (var i = 0; i < 1; i++) {
+ for (var i = 0; i < 1000; i++) {
updateTransformers("app", [[rewrite]]);
updateTransformers("app", [[]]);
}

Powered by Google App Engine
This is Rietveld 408576698