| OLD | NEW |
| 1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
| 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 // for details. All rights reserved. Use of this source code is governed by a | 3 // for details. All rights reserved. Use of this source code is governed by a |
| 4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 /** |
| 7 * This file is the entrypoint of the dart test suite. This suite is used |
| 8 * to test: |
| 9 * |
| 10 * 1. the dart vm |
| 11 * 2. the frog compiler (compiles dart to js) |
| 12 * 3. the leg compiler (also compiles dart to js) |
| 13 * 4. the dartc static analyzer |
| 14 * 5. the dart core library |
| 15 * 6. other standard dart libraries (DOM bindings, ui libraries, |
| 16 * io libraries etc.) |
| 17 * |
| 18 * This script is normally invoked by test.py. (test.py finds the dart vm |
| 19 * and passses along all command line arguments to this script.) |
| 20 * |
| 21 * The command line args of this script are documented in |
| 22 * "tools/testing/test_options.dart". |
| 23 * |
| 24 */ |
| 25 |
| 6 #library("test"); | 26 #library("test"); |
| 7 | 27 |
| 8 #import("testing/dart/test_runner.dart"); | 28 #import("testing/dart/test_runner.dart"); |
| 9 #import("testing/dart/test_options.dart"); | 29 #import("testing/dart/test_options.dart"); |
| 10 | 30 |
| 11 #import("../tests/co19/test_config.dart"); | 31 #import("../tests/co19/test_config.dart"); |
| 12 #import("../tests/corelib/test_config.dart"); | 32 #import("../tests/corelib/test_config.dart"); |
| 13 #import("../tests/isolate/test_config.dart"); | 33 #import("../tests/isolate/test_config.dart"); |
| 14 #import("../tests/language/test_config.dart"); | 34 #import("../tests/language/test_config.dart"); |
| 15 #import("../tests/standalone/test_config.dart"); | 35 #import("../tests/standalone/test_config.dart"); |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 // Start process queue. | 135 // Start process queue. |
| 116 var queue = new ProcessQueue(maxProcesses, | 136 var queue = new ProcessQueue(maxProcesses, |
| 117 progressIndicator, | 137 progressIndicator, |
| 118 startTime, | 138 startTime, |
| 119 printTiming, | 139 printTiming, |
| 120 enqueueConfiguration, | 140 enqueueConfiguration, |
| 121 verbose, | 141 verbose, |
| 122 listTests, | 142 listTests, |
| 123 keepGeneratedTests); | 143 keepGeneratedTests); |
| 124 } | 144 } |
| OLD | NEW |