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

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

Issue 1239693002: Pass actual TestPlatform and OperatingSystem values to Suite. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Update pubspec. Created 5 years, 5 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 | « lib/src/runner/reporter/expanded.dart ('k') | lib/src/runner/vm/isolate_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_listener.dart
diff --git a/lib/src/runner/vm/isolate_listener.dart b/lib/src/runner/vm/isolate_listener.dart
index 5b980d0c1c7e8f51328fe1896935e872cce204a0..06e2d6a9693c4941ff8dd0e48c7cdd98af35cbb9 100644
--- a/lib/src/runner/vm/isolate_listener.dart
+++ b/lib/src/runner/vm/isolate_listener.dart
@@ -86,8 +86,8 @@ class IsolateListener {
return;
}
- var suite = new Suite(declarer.tests, metadata: metadata)
- .forPlatform(TestPlatform.vm, os: currentOS);
+ var suite = new Suite(declarer.tests,
+ platform: TestPlatform.vm, os: currentOS, metadata: metadata);
new IsolateListener._(suite)._listen(sendPort);
}
« no previous file with comments | « lib/src/runner/reporter/expanded.dart ('k') | lib/src/runner/vm/isolate_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698