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 24 matching lines...) Expand all Loading... |
35 new Path('samples'), | 35 new Path('samples'), |
36 new Path('samples-dev'), | 36 new Path('samples-dev'), |
37 new Path('tests/benchmark_smoke'), | 37 new Path('tests/benchmark_smoke'), |
38 new Path('tests/chrome'), | 38 new Path('tests/chrome'), |
39 new Path('tests/compiler/dart2js'), | 39 new Path('tests/compiler/dart2js'), |
40 new Path('tests/compiler/dart2js_extra'), | 40 new Path('tests/compiler/dart2js_extra'), |
41 new Path('tests/compiler/dart2js_native'), | 41 new Path('tests/compiler/dart2js_native'), |
42 new Path('tests/corelib'), | 42 new Path('tests/corelib'), |
43 new Path('tests/html'), | 43 new Path('tests/html'), |
44 new Path('tests/isolate'), | 44 new Path('tests/isolate'), |
| 45 new Path('tests/kernel'), |
45 new Path('tests/language'), | 46 new Path('tests/language'), |
46 new Path('tests/lib'), | 47 new Path('tests/lib'), |
47 new Path('tests/standalone'), | 48 new Path('tests/standalone'), |
48 new Path('tests/utils'), | 49 new Path('tests/utils'), |
49 new Path('utils/tests/css'), | 50 new Path('utils/tests/css'), |
50 new Path('utils/tests/peg'), | 51 new Path('utils/tests/peg'), |
51 ]; | 52 ]; |
52 | 53 |
53 Future testConfigurations(List<Map> configurations) async { | 54 Future testConfigurations(List<Map> configurations) async { |
54 var startTime = new DateTime.now(); | 55 var startTime = new DateTime.now(); |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 maxBrowserProcesses, | 306 maxBrowserProcesses, |
306 startTime, | 307 startTime, |
307 testSuites, | 308 testSuites, |
308 eventListener, | 309 eventListener, |
309 allTestsFinished, | 310 allTestsFinished, |
310 verbose, | 311 verbose, |
311 recordingPath, | 312 recordingPath, |
312 recordingOutputPath, | 313 recordingOutputPath, |
313 adbDevicePool); | 314 adbDevicePool); |
314 } | 315 } |
OLD | NEW |