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

Unified Diff: lib/src/runner/vm/isolate_test.dart

Issue 1469863005: Add JSON protocol support for groups. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes Created 5 years, 1 month 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 | « lib/src/runner/vm/isolate_listener.dart ('k') | test/runner/json_reporter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/vm/isolate_test.dart
diff --git a/lib/src/runner/vm/isolate_test.dart b/lib/src/runner/vm/isolate_test.dart
index e4bc535be3eb63bfc7f4e5c4d9fcab4a6671ed0a..c7449666bb2308649c14901157c726789c94745d 100644
--- a/lib/src/runner/vm/isolate_test.dart
+++ b/lib/src/runner/vm/isolate_test.dart
@@ -7,6 +7,7 @@ library test.runner.vm.isolate_test;
import 'dart:async';
import 'dart:isolate';
+import '../../backend/group.dart';
import '../../backend/live_test.dart';
import '../../backend/live_test_controller.dart';
import '../../backend/metadata.dart';
@@ -28,7 +29,7 @@ class IsolateTest extends Test {
IsolateTest(this.name, this.metadata, this._sendPort);
- LiveTest load(Suite suite) {
+ LiveTest load(Suite suite, {Iterable<Group> groups}) {
var controller;
// We get a new send port for communicating with the live test, since
@@ -82,7 +83,7 @@ class IsolateTest extends Test {
await controller.completer.future;
receivePort.close();
});
- });
+ }, groups: groups);
return controller.liveTest;
}
« no previous file with comments | « lib/src/runner/vm/isolate_listener.dart ('k') | test/runner/json_reporter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698