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

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

Issue 25876002: test.py: Propagate the global --dartium option to the browser controller (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: tools/testing/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index cb9de965995f306e38660440e7db8d2679ac0b84..3b2c85d9fa29bc8fb8e68fccec3361eff76b168c 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -2077,7 +2077,8 @@ class CommandExecutorImpl implements CommandExecutor {
var num_browsers = maxBrowserProcesses;
if (_browserTestRunners[browser] == null) {
var testRunner =
- new BrowserTestRunner(local_ip, browser, num_browsers);
+ new BrowserTestRunner(
+ globalConfiguration, local_ip, browser, num_browsers);
if (globalConfiguration['verbose']) {
testRunner.logger = DebugLogger.info;
}

Powered by Google App Engine
This is Rietveld 408576698