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

Unified Diff: pkg/scheduled_test/test/scheduled_process_test.dart

Issue 50303005: Clean up some pub and scheduled_test integration with the new isolate API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: pkg/scheduled_test/test/scheduled_process_test.dart
diff --git a/pkg/scheduled_test/test/scheduled_process_test.dart b/pkg/scheduled_test/test/scheduled_process_test.dart
index 2f9387f8d98371867233de52c9ecfee79068e843..154760d40dadba40c30e887c38b986037bee047b 100644
--- a/pkg/scheduled_test/test/scheduled_process_test.dart
+++ b/pkg/scheduled_test/test/scheduled_process_test.dart
@@ -7,6 +7,7 @@ library scheduled_process_test;
import 'dart:async';
import 'dart:convert';
import 'dart:io';
+import 'dart:platform' as platform;
import 'package:path/path.dart' as path;
import 'package:scheduled_test/scheduled_process.dart';
@@ -15,8 +16,8 @@ import 'package:scheduled_test/scheduled_test.dart';
import 'metatest.dart';
import 'utils.dart';
-void main(List<String> args, message) {
- metaTestInit(message);
+void main(_, message) {
+ initMetatest(message);
setUpTimeout();
@@ -389,5 +390,6 @@ ScheduledProcess startDartProcess(String script) {
});
}, 'clean up temp dir');
- return new ScheduledProcess.start(dartExecutable, ['--checked', dartPath]);
+ return new ScheduledProcess.start(platform.executable,
+ ['--checked', dartPath]);
}
« no previous file with comments | « pkg/scheduled_test/test/scheduled_future_matchers_test.dart ('k') | pkg/scheduled_test/test/scheduled_server_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698