| 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 library test_configurations; | 5 library test_configurations; |
| 6 | 6 |
| 7 import "dart:async"; | 7 import "dart:async"; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 import "dart:math" as math; | 9 import "dart:math" as math; |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * required by [StandardTestSuite]'s forDirectory constructor. | 24 * required by [StandardTestSuite]'s forDirectory constructor. |
| 25 * New test suites should follow this convention because it makes it much | 25 * New test suites should follow this convention because it makes it much |
| 26 * simpler to add them to test.dart. Existing test suites should be | 26 * simpler to add them to test.dart. Existing test suites should be |
| 27 * moved to here, if possible. | 27 * moved to here, if possible. |
| 28 */ | 28 */ |
| 29 final TEST_SUITE_DIRECTORIES = [ | 29 final TEST_SUITE_DIRECTORIES = [ |
| 30 new Path('pkg'), | 30 new Path('pkg'), |
| 31 new Path('third_party/pkg_tested'), | 31 new Path('third_party/pkg_tested'), |
| 32 new Path('runtime/tests/vm'), | 32 new Path('runtime/tests/vm'), |
| 33 new Path('runtime/observatory/tests/service'), | 33 new Path('runtime/observatory/tests/service'), |
| 34 new Path('runtime/observatory/tests/observatory_ui'), |
| 34 new Path('samples'), | 35 new Path('samples'), |
| 35 new Path('samples-dev'), | 36 new Path('samples-dev'), |
| 36 new Path('tests/benchmark_smoke'), | 37 new Path('tests/benchmark_smoke'), |
| 37 new Path('tests/chrome'), | 38 new Path('tests/chrome'), |
| 38 new Path('tests/compiler/dart2js'), | 39 new Path('tests/compiler/dart2js'), |
| 39 new Path('tests/compiler/dart2js_extra'), | 40 new Path('tests/compiler/dart2js_extra'), |
| 40 new Path('tests/compiler/dart2js_native'), | 41 new Path('tests/compiler/dart2js_native'), |
| 41 new Path('tests/corelib'), | 42 new Path('tests/corelib'), |
| 42 new Path('tests/html'), | 43 new Path('tests/html'), |
| 43 new Path('tests/isolate'), | 44 new Path('tests/isolate'), |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 maxBrowserProcesses, | 304 maxBrowserProcesses, |
| 304 startTime, | 305 startTime, |
| 305 testSuites, | 306 testSuites, |
| 306 eventListener, | 307 eventListener, |
| 307 allTestsFinished, | 308 allTestsFinished, |
| 308 verbose, | 309 verbose, |
| 309 recordingPath, | 310 recordingPath, |
| 310 recordingOutputPath, | 311 recordingOutputPath, |
| 311 adbDevicePool); | 312 adbDevicePool); |
| 312 } | 313 } |
| OLD | NEW |