| 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 /** | 6 /** |
| 7 * This file is the entrypoint of the dart test suite. This suite is used | 7 * This file is the entrypoint of the dart test suite. This suite is used |
| 8 * to test: | 8 * to test: |
| 9 * | 9 * |
| 10 * 1. the dart vm | 10 * 1. the dart vm |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 * required by [StandardTestSuite]'s forDirectory constructor. | 41 * required by [StandardTestSuite]'s forDirectory constructor. |
| 42 * New test suites should follow this convention because it makes it much | 42 * New test suites should follow this convention because it makes it much |
| 43 * simpler to add them to test.dart. Existing test suites should be | 43 * simpler to add them to test.dart. Existing test suites should be |
| 44 * moved to here, if possible. | 44 * moved to here, if possible. |
| 45 */ | 45 */ |
| 46 final TEST_SUITE_DIRECTORIES = [ | 46 final TEST_SUITE_DIRECTORIES = [ |
| 47 new Path('pkg'), | 47 new Path('pkg'), |
| 48 new Path('runtime/tests/vm'), | 48 new Path('runtime/tests/vm'), |
| 49 new Path('samples/tests/samples'), | 49 new Path('samples/tests/samples'), |
| 50 new Path('tests/benchmark_smoke'), | 50 new Path('tests/benchmark_smoke'), |
| 51 new Path('tests/chrome'), |
| 51 new Path('tests/compiler/dart2js'), | 52 new Path('tests/compiler/dart2js'), |
| 52 new Path('tests/compiler/dart2js_extra'), | 53 new Path('tests/compiler/dart2js_extra'), |
| 53 new Path('tests/compiler/dart2js_foreign'), | 54 new Path('tests/compiler/dart2js_foreign'), |
| 54 new Path('tests/compiler/dart2js_native'), | 55 new Path('tests/compiler/dart2js_native'), |
| 55 new Path('tests/corelib'), | 56 new Path('tests/corelib'), |
| 56 new Path('tests/dom'), | 57 new Path('tests/dom'), |
| 57 new Path('tests/html'), | 58 new Path('tests/html'), |
| 58 new Path('tests/isolate'), | 59 new Path('tests/isolate'), |
| 59 new Path('tests/json'), | 60 new Path('tests/json'), |
| 60 new Path('tests/language'), | 61 new Path('tests/language'), |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 // Start process queue. | 154 // Start process queue. |
| 154 new ProcessQueue(maxProcesses, | 155 new ProcessQueue(maxProcesses, |
| 155 progressIndicator, | 156 progressIndicator, |
| 156 startTime, | 157 startTime, |
| 157 printTiming, | 158 printTiming, |
| 158 enqueueConfiguration, | 159 enqueueConfiguration, |
| 159 () => TestingServerRunner.terminateHttpServers(), | 160 () => TestingServerRunner.terminateHttpServers(), |
| 160 verbose, | 161 verbose, |
| 161 listTests); | 162 listTests); |
| 162 } | 163 } |
| OLD | NEW |