| 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 26 matching lines...) Expand all Loading... |
| 37 /** | 37 /** |
| 38 * The directories that contain test suites which follow the conventions | 38 * The directories that contain test suites which follow the conventions |
| 39 * required by [StandardTestSuite]'s forDirectory constructor. | 39 * required by [StandardTestSuite]'s forDirectory constructor. |
| 40 * New test suites should follow this convention because it makes it much | 40 * New test suites should follow this convention because it makes it much |
| 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 'frog/tests/await', | 45 'frog/tests/await', |
| 46 'frog/tests/frog', | 46 'frog/tests/frog', |
| 47 'frog/tests/frog_native', | |
| 48 'frog/tests/leg', | |
| 49 'frog/tests/leg_only', | |
| 50 'runtime/tests/vm', | 47 'runtime/tests/vm', |
| 51 'samples/tests/samples', | 48 'samples/tests/samples', |
| 52 'tests/benchmark_smoke', | 49 'tests/benchmark_smoke', |
| 50 'tests/compiler/dart2js', |
| 51 'tests/compiler/dart2js_extra', |
| 52 'tests/compiler/dart2js_native', |
| 53 'tests/corelib', | 53 'tests/corelib', |
| 54 'tests/dom', | 54 'tests/dom', |
| 55 'tests/html', | 55 'tests/html', |
| 56 'tests/isolate', | 56 'tests/isolate', |
| 57 'tests/json', | 57 'tests/json', |
| 58 'tests/language', | 58 'tests/language', |
| 59 'tests/lib', | 59 'tests/lib', |
| 60 'tests/standalone', | 60 'tests/standalone', |
| 61 'tests/utils', | 61 'tests/utils', |
| 62 'utils/tests/css', | 62 'utils/tests/css', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 // Start process queue. | 128 // Start process queue. |
| 129 var queue = new ProcessQueue(maxProcesses, | 129 var queue = new ProcessQueue(maxProcesses, |
| 130 progressIndicator, | 130 progressIndicator, |
| 131 startTime, | 131 startTime, |
| 132 printTiming, | 132 printTiming, |
| 133 enqueueConfiguration, | 133 enqueueConfiguration, |
| 134 verbose, | 134 verbose, |
| 135 listTests); | 135 listTests); |
| 136 } | 136 } |
| OLD | NEW |