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

Unified Diff: tools/testing/dart/multitest.dart

Issue 11884029: Upload new Dart binaries and re-enable unit tests for test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change Futures.wait to Future.wait in two test script files. Created 7 years, 11 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 | « tools/testing/dart/http_server.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/multitest.dart
diff --git a/tools/testing/dart/multitest.dart b/tools/testing/dart/multitest.dart
index e2b6aeec217560b1250de3ef22c9a742ee19247f..abc4441992f5da124c5f101e98e99538540581e4 100644
--- a/tools/testing/dart/multitest.dart
+++ b/tools/testing/dart/multitest.dart
@@ -216,7 +216,7 @@ Future doMultitest(Path filePath, String outputDir, Path suiteDir,
}
// Wait until all imports are copied before scheduling test cases.
- return Futures.wait(futureCopies).then((_) {
+ return Future.wait(futureCopies).then((_) {
String baseFilename = filePath.filenameWithoutExtension;
for (String key in tests.keys) {
final Path multitestFilename =
@@ -266,5 +266,5 @@ Path CreateMultitestDirectory(String outputDir, Path suiteDir) {
if (!dir.existsSync()) {
dir.createSync();
}
- return new Path.fromNative(new File(path).fullPathSync());
+ return new Path(new File(path).fullPathSync());
}
« no previous file with comments | « tools/testing/dart/http_server.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698