| 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'; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 new Path('pkg'), | 29 new Path('pkg'), |
| 30 new Path('third_party/pkg_tested'), | 30 new Path('third_party/pkg_tested'), |
| 31 new Path('runtime/tests/vm'), | 31 new Path('runtime/tests/vm'), |
| 32 new Path('runtime/observatory/tests/service'), | 32 new Path('runtime/observatory/tests/service'), |
| 33 new Path('runtime/observatory/tests/observatory_ui'), | 33 new Path('runtime/observatory/tests/observatory_ui'), |
| 34 new Path('samples'), | 34 new Path('samples'), |
| 35 new Path('samples-dev'), | 35 new Path('samples-dev'), |
| 36 new Path('tests/compiler/dart2js'), | 36 new Path('tests/compiler/dart2js'), |
| 37 new Path('tests/compiler/dart2js_extra'), | 37 new Path('tests/compiler/dart2js_extra'), |
| 38 new Path('tests/compiler/dart2js_native'), | 38 new Path('tests/compiler/dart2js_native'), |
| 39 new Path('tests/corelib'), | |
| 40 new Path('tests/corelib_2'), | 39 new Path('tests/corelib_2'), |
| 41 new Path('tests/corelib_strong'), | |
| 42 new Path('tests/html'), | 40 new Path('tests/html'), |
| 43 new Path('tests/isolate'), | 41 new Path('tests/isolate'), |
| 44 new Path('tests/kernel'), | 42 new Path('tests/kernel'), |
| 45 new Path('tests/language'), | 43 new Path('tests/language'), |
| 46 new Path('tests/language_strong'), | 44 new Path('tests/language_strong'), |
| 47 new Path('tests/language_2'), | 45 new Path('tests/language_2'), |
| 48 new Path('tests/lib'), | 46 new Path('tests/lib'), |
| 49 new Path('tests/lib_strong'), | 47 new Path('tests/lib_strong'), |
| 50 new Path('tests/lib_2'), | 48 new Path('tests/lib_2'), |
| 51 new Path('tests/standalone'), | 49 new Path('tests/standalone'), |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 // Start all the HTTP servers required before starting the process queue. | 258 // Start all the HTTP servers required before starting the process queue. |
| 261 if (!serverFutures.isEmpty) { | 259 if (!serverFutures.isEmpty) { |
| 262 await Future.wait(serverFutures); | 260 await Future.wait(serverFutures); |
| 263 } | 261 } |
| 264 | 262 |
| 265 // [firstConf] is needed here, since the ProcessQueue needs to know the | 263 // [firstConf] is needed here, since the ProcessQueue needs to know the |
| 266 // settings of 'noBatch' and 'local_ip' | 264 // settings of 'noBatch' and 'local_ip' |
| 267 new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime, | 265 new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime, |
| 268 testSuites, eventListener, allTestsFinished, verbose, adbDevicePool); | 266 testSuites, eventListener, allTestsFinished, verbose, adbDevicePool); |
| 269 } | 267 } |
| OLD | NEW |