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

Unified Diff: tools/test.dart

Issue 22532003: test.py: Print command line when starting http servers in case of '--verbose' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 192800eb6b654f06e2486f29e86bcdc0b0446bb6..3147a3698d4046fc1a27d63ed346bf7a2f547fff 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -147,6 +147,12 @@ void testConfigurations(List<Map> configurations) {
conf['runtime']);
serverFutures.add(servers.startServers(conf['local_ip']));
conf['_servers_'] = servers;
+ if (verbose) {
+ serverFutures.last.then((_) {
+ var commandline = servers.httpServerCommandline();
+ print('Started HttpServers: $commandline');
+ });
+ }
}
// There should not be more than one InternetExplorerDriver instance
« 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