| 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 * simpler to add them to test.dart. Existing test suites should be | 41 * simpler to add them to test.dart. Existing test suites should be |
| 42 * moved to here, if possible. | 42 * moved to here, if possible. |
| 43 */ | 43 */ |
| 44 final TEST_SUITE_DIRECTORIES = const [ | 44 final TEST_SUITE_DIRECTORIES = const [ |
| 45 const Path('pkg'), | 45 const Path('pkg'), |
| 46 const Path('runtime/tests/vm'), | 46 const Path('runtime/tests/vm'), |
| 47 const Path('samples/tests/samples'), | 47 const Path('samples/tests/samples'), |
| 48 const Path('tests/benchmark_smoke'), | 48 const Path('tests/benchmark_smoke'), |
| 49 const Path('tests/compiler/dart2js'), | 49 const Path('tests/compiler/dart2js'), |
| 50 const Path('tests/compiler/dart2js_extra'), | 50 const Path('tests/compiler/dart2js_extra'), |
| 51 const Path('tests/compiler/dart2js_foreign'), |
| 51 const Path('tests/compiler/dart2js_native'), | 52 const Path('tests/compiler/dart2js_native'), |
| 52 const Path('tests/corelib'), | 53 const Path('tests/corelib'), |
| 53 const Path('tests/dom'), | 54 const Path('tests/dom'), |
| 54 const Path('tests/html'), | 55 const Path('tests/html'), |
| 55 const Path('tests/isolate'), | 56 const Path('tests/isolate'), |
| 56 const Path('tests/json'), | 57 const Path('tests/json'), |
| 57 const Path('tests/language'), | 58 const Path('tests/language'), |
| 58 const Path('tests/lib'), | 59 const Path('tests/lib'), |
| 59 const Path('tests/standalone'), | 60 const Path('tests/standalone'), |
| 60 const Path('tests/utils'), | 61 const Path('tests/utils'), |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 127 |
| 127 // Start process queue. | 128 // Start process queue. |
| 128 var queue = new ProcessQueue(maxProcesses, | 129 var queue = new ProcessQueue(maxProcesses, |
| 129 progressIndicator, | 130 progressIndicator, |
| 130 startTime, | 131 startTime, |
| 131 printTiming, | 132 printTiming, |
| 132 enqueueConfiguration, | 133 enqueueConfiguration, |
| 133 verbose, | 134 verbose, |
| 134 listTests); | 135 listTests); |
| 135 } | 136 } |
| OLD | NEW |