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

Unified Diff: sdk/lib/_internal/pub/test/serve/utils.dart

Issue 200573007: Better progress reporting. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 6 years, 9 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: sdk/lib/_internal/pub/test/serve/utils.dart
diff --git a/sdk/lib/_internal/pub/test/serve/utils.dart b/sdk/lib/_internal/pub/test/serve/utils.dart
index 424a06e6b42c229b86eee024dc1b4c16f7a6f4e2..c9ea71e9876d6aad9e96627fd19ebfea8a68bb6a 100644
--- a/sdk/lib/_internal/pub/test/serve/utils.dart
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart
@@ -150,6 +150,9 @@ ScheduledProcess pubServe({bool shouldGetFirst: false, bool createWebDir: true,
_pubServer.stdout.expect(consumeThrough("Got dependencies!"));
}
+ _pubServer.stdout.expect(startsWith("Loading source assets..."));
+ _pubServer.stdout.expect(consumeWhile(matches("Loading .* transformers...")));
+
// The server should emit one or more ports.
_pubServer.stdout.expect(
consumeWhile(predicate(_parsePort, 'emits server url')));

Powered by Google App Engine
This is Rietveld 408576698