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

Unified Diff: dart/tests/standalone/io/test_runner_test.dart

Issue 28613003: Fixed test_runner_test.dart: Use normal TestOptionsParser to get default options (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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
« 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: dart/tests/standalone/io/test_runner_test.dart
diff --git a/dart/tests/standalone/io/test_runner_test.dart b/dart/tests/standalone/io/test_runner_test.dart
index 3ddae2a0afda898221949ddafd77e09ffcf12ab0..9859e23d5862eb465cf85738c72ad7e1cb848f2a 100644
--- a/dart/tests/standalone/io/test_runner_test.dart
+++ b/dart/tests/standalone/io/test_runner_test.dart
@@ -113,7 +113,8 @@ class CustomTestSuite extends TestSuite {
void testProcessQueue() {
var maxProcesses = 2;
var maxBrowserProcesses = maxProcesses;
- new ProcessQueue({'noBatch' : true}, maxProcesses, maxBrowserProcesses,
+ var config = new TestOptionsParser().parse(['--nobatch'])[0];
+ new ProcessQueue(config, maxProcesses, maxBrowserProcesses,
new DateTime.now(), [new CustomTestSuite()],
[new EventListener()], TestController.finished);
}
« 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