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

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

Issue 342763003: Show partial reports in pub get, serve, and build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 6 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
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 a4763101fb94268f193fdf7ef74853e1ba29b063..c7e6f7e69a9ffa43d888f8732041c3a3a252ed12 100644
--- a/sdk/lib/_internal/pub/test/serve/utils.dart
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart
@@ -184,7 +184,10 @@ ScheduledProcess pubServe({bool shouldGetFirst: false, bool createWebDir: true,
});
if (shouldGetFirst) {
- _pubServer.stdout.expect(consumeThrough("Got dependencies!"));
+ _pubServer.stdout.expect(consumeThrough(anyOf([
+ "Got dependencies!",
+ matches(new RegExp(r"^Changed \d+ dependenc"))
+ ])));
}
_pubServer.stdout.expect(startsWith("Loading source assets..."));

Powered by Google App Engine
This is Rietveld 408576698