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

Unified Diff: dart/tools/test.dart

Issue 91473002: Checked-in binary update to v1.0.0.3 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | « dart/tests/standalone/standalone.status ('k') | dart/tools/testing/bin/linux/dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/test.dart
diff --git a/dart/tools/test.dart b/dart/tools/test.dart
index 4d7145924f4e6e5026d4896ebe15a10c547fa716..0f5836fc9b82a47e8486083216499ef6d0dfdba1 100755
--- a/dart/tools/test.dart
+++ b/dart/tools/test.dart
@@ -282,10 +282,10 @@ Future deleteTemporaryDartDirectories() {
return completer.future;
}
-void main() {
+void main(List<String> arguments) {
deleteTemporaryDartDirectories().then((_) {
var optionsParser = new TestOptionsParser();
- var configurations = optionsParser.parse(new Options().arguments);
+ var configurations = optionsParser.parse(arguments);
if (configurations != null && configurations.length > 0) {
testConfigurations(configurations);
}
« no previous file with comments | « dart/tests/standalone/standalone.status ('k') | dart/tools/testing/bin/linux/dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698