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

Unified Diff: tools/testing/dart/test_runner.dart

Issue 22420002: Add support for ie in the browser controller (Closed) Base URL: http://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
Index: tools/testing/dart/test_runner.dart
===================================================================
--- tools/testing/dart/test_runner.dart (revision 26105)
+++ tools/testing/dart/test_runner.dart (working copy)
@@ -1847,7 +1847,9 @@
if (_browserTestRunners[browser] == null) {
var testRunner =
new BrowserTestRunner(local_ip, browser, num_browsers);
- testRunner.logger = DebugLogger.info;
+ if (globalConfiguration['verbose']) {
+ testRunner.logger = DebugLogger.info;
+ }
_browserTestRunners[browser] = testRunner;
return testRunner.start().then((started) {
if (started) {
« tools/testing/dart/browser_controller.dart ('K') | « tools/testing/dart/browser_controller.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698