OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import 'dart:async'; | 5 import 'dart:async'; |
6 import 'dart:io'; | 6 import 'dart:io'; |
7 import 'dart:math' as math; | 7 import 'dart:math' as math; |
8 | 8 |
9 import 'android.dart'; | 9 import 'android.dart'; |
10 import 'browser_controller.dart'; | 10 import 'browser_controller.dart'; |
11 import 'co19_test_config.dart'; | 11 import 'co19_test_config.dart'; |
12 import 'configuration.dart'; | 12 import 'configuration.dart'; |
13 import 'path.dart'; | 13 import 'path.dart'; |
14 import 'test_progress.dart'; | 14 import 'test_progress.dart'; |
15 import 'test_runner.dart'; | 15 import 'test_runner.dart'; |
16 import 'test_suite.dart'; | 16 import 'test_suite.dart'; |
17 import 'utils.dart'; | 17 import 'utils.dart'; |
18 import 'vm_test_config.dart'; | 18 import 'vm_test_config.dart'; |
19 | 19 |
20 /** | 20 /** |
21 * The directories that contain test suites which follow the conventions | 21 * The directories that contain test suites which follow the conventions |
22 * required by [StandardTestSuite]'s forDirectory constructor. | 22 * required by [StandardTestSuite]'s forDirectory constructor. |
23 * New test suites should follow this convention because it makes it much | 23 * New test suites should follow this convention because it makes it much |
24 * simpler to add them to test.dart. Existing test suites should be | 24 * simpler to add them to test.dart. Existing test suites should be |
25 * moved to here, if possible. | 25 * moved to here, if possible. |
26 */ | 26 */ |
27 final TEST_SUITE_DIRECTORIES = [ | 27 final TEST_SUITE_DIRECTORIES = [ |
| 28 new Path('third_party/pkg/dartdoc'), |
28 new Path('pkg'), | 29 new Path('pkg'), |
29 new Path('third_party/pkg_tested'), | 30 new Path('third_party/pkg_tested'), |
30 new Path('runtime/tests/vm'), | 31 new Path('runtime/tests/vm'), |
31 new Path('runtime/observatory/tests/service'), | 32 new Path('runtime/observatory/tests/service'), |
32 new Path('runtime/observatory/tests/observatory_ui'), | 33 new Path('runtime/observatory/tests/observatory_ui'), |
33 new Path('samples'), | 34 new Path('samples'), |
34 new Path('samples-dev'), | 35 new Path('samples-dev'), |
35 new Path('tests/benchmark_smoke'), | 36 new Path('tests/benchmark_smoke'), |
36 new Path('tests/chrome'), | 37 new Path('tests/chrome'), |
37 new Path('tests/compiler/dart2js'), | 38 new Path('tests/compiler/dart2js'), |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 maxBrowserProcesses, | 276 maxBrowserProcesses, |
276 startTime, | 277 startTime, |
277 testSuites, | 278 testSuites, |
278 eventListener, | 279 eventListener, |
279 allTestsFinished, | 280 allTestsFinished, |
280 verbose, | 281 verbose, |
281 recordingPath, | 282 recordingPath, |
282 replayPath, | 283 replayPath, |
283 adbDevicePool); | 284 adbDevicePool); |
284 } | 285 } |
OLD | NEW |