Chromium Code Reviews| 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 11 matching lines...) Expand all Loading... | |
| 22 * "tools/testing/test_options.dart". | 22 * "tools/testing/test_options.dart". |
| 23 * | 23 * |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #library("test"); | 26 #library("test"); |
| 27 | 27 |
| 28 #import("testing/dart/test_runner.dart"); | 28 #import("testing/dart/test_runner.dart"); |
| 29 #import("testing/dart/test_options.dart"); | 29 #import("testing/dart/test_options.dart"); |
| 30 #import("testing/dart/test_suite.dart"); | 30 #import("testing/dart/test_suite.dart"); |
| 31 | 31 |
| 32 #import("../compiler/tests/dartc/test_config.dart"); | 32 #import("../compiler/tests/dartc/test_config.dart"); // JUnitTestSuite |
| 33 #import("../runtime/tests/vm/test_config.dart"); | 33 #import("../runtime/tests/vm/test_config.dart"); // CCTestSuite |
| 34 #import("../samples/tests/dartc/test_config.dart"); | 34 #import("../samples/tests/dartc/test_config.dart"); // DartcCompilationTestS.. |
|
Mads Ager (google)
2012/05/29 07:36:02
?
Move the comments to the lines above the import
Bill Hesse
2012/05/31 15:55:10
Removed from this commit.
On 2012/05/29 07:36:02,
Bill Hesse
2012/05/31 15:55:10
File reverted
| |
| 35 #import("../tests/co19/test_config.dart"); | 35 #import("../tests/co19/test_config.dart"); // StandardTestSuite |
| 36 | 36 |
| 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', |
| (...skipping 81 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 |