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

Unified Diff: tools/test.dart

Issue 9599015: documented component (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix flag description Created 8 years, 10 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 | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 80545b1d1c242e87c57e32f167ac964a2303dc40..8d2ba584c1a404abe854ec5186b1c941caddb467 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -3,6 +3,26 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+/**
+ * This file is the entrypoint of the dart test suite. This suite is used
+ * to test:
+ *
+ * 1. the dart vm
+ * 2. the frog compiler (compiles dart to js)
+ * 3. the leg compiler (also compiles dart to js)
+ * 4. the dartc static analyzer
+ * 5. the dart core library
+ * 6. other standard dart libraries (DOM bindings, ui libraries,
+ * io libraries etc.)
+ *
+ * This script is normally invoked by test.py. (test.py finds the dart vm
+ * and passses along all command line arguments to this script.)
+ *
+ * The command line args of this script are documented in
+ * "tools/testing/test_options.dart".
+ *
+ */
+
#library("test");
#import("testing/dart/test_runner.dart");
« no previous file with comments | « no previous file | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698