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

Unified Diff: pkg/unittest/test/unittest_test_utils.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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 | « pkg/serialization/test/serialization_test.dart ('k') | runtime/bin/eventhandler_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/test/unittest_test_utils.dart
diff --git a/pkg/unittest/test/unittest_test_utils.dart b/pkg/unittest/test/unittest_test_utils.dart
index 7d9a922d0ec76f6158d32dc9cfd32ec4cdf2088e..92555ddbea93d7b5ccd41c8e5fde49363445df05 100644
--- a/pkg/unittest/test/unittest_test_utils.dart
+++ b/pkg/unittest/test/unittest_test_utils.dart
@@ -78,18 +78,16 @@ makeImmediateTeardown(index, s) => () {
s.write('l$index D ');
};
-runTestInIsolate() {
- port.receive((_, sendport) {
- var testConfig = new TestConfiguration(sendport);
- unittestConfiguration = testConfig;
- testFunction(testConfig);
- });
+runTestInIsolate(sendport) {
+ var testConfig = new TestConfiguration(sendport);
+ unittestConfiguration = testConfig;
+ testFunction(testConfig);
}
main() {
- spawnFunction(runTestInIsolate)
- .call('')
- .then((String msg) {
- expect(msg.trim(), equals(expected));
- });
+ var replyPort = new ReceivePort();
+ Isolate.spawn(runTestInIsolate, replyPort.sendPort);
+ replyPort.first.then((String msg) {
+ expect(msg.trim(), equals(expected));
+ });
}
« no previous file with comments | « pkg/serialization/test/serialization_test.dart ('k') | runtime/bin/eventhandler_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698