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 27 matching lines...) Expand all Loading... |
38 /** | 38 /** |
39 * The directories that contain test suites which follow the conventions | 39 * The directories that contain test suites which follow the conventions |
40 * required by [StandardTestSuite]'s forDirectory constructor. | 40 * required by [StandardTestSuite]'s forDirectory constructor. |
41 * New test suites should follow this convention because it makes it much | 41 * New test suites should follow this convention because it makes it much |
42 * simpler to add them to test.dart. Existing test suites should be | 42 * simpler to add them to test.dart. Existing test suites should be |
43 * moved to here, if possible. | 43 * moved to here, if possible. |
44 */ | 44 */ |
45 final TEST_SUITE_DIRECTORIES = const [ | 45 final TEST_SUITE_DIRECTORIES = const [ |
46 const Path('frog/tests/await'), | 46 const Path('frog/tests/await'), |
47 const Path('frog/tests/frog'), | 47 const Path('frog/tests/frog'), |
| 48 const Path('pkg'), |
48 const Path('runtime/tests/vm'), | 49 const Path('runtime/tests/vm'), |
49 const Path('samples/tests/samples'), | 50 const Path('samples/tests/samples'), |
50 const Path('tests/benchmark_smoke'), | 51 const Path('tests/benchmark_smoke'), |
51 const Path('tests/compiler/dart2js'), | 52 const Path('tests/compiler/dart2js'), |
52 const Path('tests/compiler/dart2js_extra'), | 53 const Path('tests/compiler/dart2js_extra'), |
53 const Path('tests/compiler/dart2js_native'), | 54 const Path('tests/compiler/dart2js_native'), |
54 const Path('tests/corelib'), | 55 const Path('tests/corelib'), |
55 const Path('tests/dom'), | 56 const Path('tests/dom'), |
56 const Path('tests/html'), | 57 const Path('tests/html'), |
57 const Path('tests/isolate'), | 58 const Path('tests/isolate'), |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 | 129 |
129 // Start process queue. | 130 // Start process queue. |
130 var queue = new ProcessQueue(maxProcesses, | 131 var queue = new ProcessQueue(maxProcesses, |
131 progressIndicator, | 132 progressIndicator, |
132 startTime, | 133 startTime, |
133 printTiming, | 134 printTiming, |
134 enqueueConfiguration, | 135 enqueueConfiguration, |
135 verbose, | 136 verbose, |
136 listTests); | 137 listTests); |
137 } | 138 } |
OLD | NEW |