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

Unified Diff: utils/testrunner/testrunner.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address Anders' comment. 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
« tools/dom/src/Isolates.dart ('K') | « utils/testrunner/standard_test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/testrunner.dart
diff --git a/utils/testrunner/testrunner.dart b/utils/testrunner/testrunner.dart
index 7ecf8ac985d5c0b833bb9df73365db95f67582ed..3a93a0438d42a9b7b92a879115e40338daed7853 100755
--- a/utils/testrunner/testrunner.dart
+++ b/utils/testrunner/testrunner.dart
@@ -256,8 +256,10 @@ void spawnTasks(Map config, List testFiles) {
// We could later print a summary report here.
}
});
- SendPort s = spawnUri(config['pipeline']);
-
+ var response = new ReceivePort();
+ spawnUri(config['pipeline'], [], response)
+ .then((_) => return response.first)
+ .then((s) {
// Get the names of the source and target test files and containing
Lasse Reichstein Nielsen 2013/10/25 09:42:49 Indentation seems wrong. It should be two characte
floitsch 2013/10/25 13:11:01 Done.
// directories.
var testPath = new Path(testfile);
@@ -280,14 +282,14 @@ void spawnTasks(Map config, List testFiles) {
_testDir = targetDir;
}
if (f == null) {
- s.send(config, port.toSendPort());
+ s.send([config, port.sendPort]);
} else {
f.then((_) {
- s.send(config, port.toSendPort());
+ s.send([config, port.sendPort]);
});
break; // Don't do any more until pub is done.
}
- }
+ });
}
/**
« tools/dom/src/Isolates.dart ('K') | « utils/testrunner/standard_test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698