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

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

Issue 645533002: Clean up test_runner Command subclass hash/equality. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove stray changes Created 6 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 | tools/testing/dart/compiler_configuration.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/test_runner_test.dart
diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
index d3f80e01bfc388fdb020429ebcb8412837d1baed..e5ec3aef62bd3fce4045f7424a38b39ebbccc744 100644
--- a/tests/standalone/io/test_runner_test.dart
+++ b/tests/standalone/io/test_runner_test.dart
@@ -57,7 +57,7 @@ class TestController {
class CustomTestSuite extends TestSuite {
- CustomTestSuite() : super({}, "CustomTestSuite");
+ CustomTestSuite(Map configuration) : super(configuration, "CustomTestSuite");
void forEachTest(TestCaseEvent onTest, Map testCache, [onDone]) {
void enqueueTestCase(testCase) {
@@ -117,7 +117,7 @@ void testProcessQueue() {
var maxBrowserProcesses = maxProcesses;
var config = new TestOptionsParser().parse(['--nobatch'])[0];
new ProcessQueue(config, maxProcesses, maxBrowserProcesses,
- new DateTime.now(), [new CustomTestSuite()],
+ new DateTime.now(), [new CustomTestSuite(config)],
[new EventListener()], TestController.finished);
}
« no previous file with comments | « no previous file | tools/testing/dart/compiler_configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698