Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: tools/testing/dart/test_configurations.dart

Issue 2980213002: Re-land beginning Dart 2.0 test migration. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 21 matching lines...) Expand all
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/benchmark_smoke'), 36 new Path('tests/benchmark_smoke'),
37 new Path('tests/chrome'), 37 new Path('tests/chrome'),
38 new Path('tests/compiler/dart2js'), 38 new Path('tests/compiler/dart2js'),
39 new Path('tests/compiler/dart2js_extra'), 39 new Path('tests/compiler/dart2js_extra'),
40 new Path('tests/compiler/dart2js_native'), 40 new Path('tests/compiler/dart2js_native'),
41 new Path('tests/corelib'), 41 new Path('tests/corelib'),
42 new Path('tests/corelib_2'),
42 new Path('tests/corelib_strong'), 43 new Path('tests/corelib_strong'),
43 new Path('tests/html'), 44 new Path('tests/html'),
44 new Path('tests/isolate'), 45 new Path('tests/isolate'),
45 new Path('tests/kernel'), 46 new Path('tests/kernel'),
46 new Path('tests/language'), 47 new Path('tests/language'),
47 new Path('tests/language_strong'), 48 new Path('tests/language_strong'),
49 new Path('tests/language_2'),
48 new Path('tests/lib'), 50 new Path('tests/lib'),
49 new Path('tests/lib_strong'), 51 new Path('tests/lib_strong'),
52 new Path('tests/lib_2'),
50 new Path('tests/standalone'), 53 new Path('tests/standalone'),
51 new Path('tests/utils'), 54 new Path('tests/utils'),
52 new Path('utils/tests/css'), 55 new Path('utils/tests/css'),
53 new Path('utils/tests/peg'), 56 new Path('utils/tests/peg'),
54 ]; 57 ];
55 58
56 // This file is created by gclient runhooks. 59 // This file is created by gclient runhooks.
57 final VS_TOOLCHAIN_FILE = new Path("build/win_toolchain.json"); 60 final VS_TOOLCHAIN_FILE = new Path("build/win_toolchain.json");
58 61
59 Future testConfigurations(List<Configuration> configurations) async { 62 Future testConfigurations(List<Configuration> configurations) async {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // Start all the HTTP servers required before starting the process queue. 263 // Start all the HTTP servers required before starting the process queue.
261 if (!serverFutures.isEmpty) { 264 if (!serverFutures.isEmpty) {
262 await Future.wait(serverFutures); 265 await Future.wait(serverFutures);
263 } 266 }
264 267
265 // [firstConf] is needed here, since the ProcessQueue needs to know the 268 // [firstConf] is needed here, since the ProcessQueue needs to know the
266 // settings of 'noBatch' and 'local_ip' 269 // settings of 'noBatch' and 'local_ip'
267 new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime, 270 new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime,
268 testSuites, eventListener, allTestsFinished, verbose, adbDevicePool); 271 testSuites, eventListener, allTestsFinished, verbose, adbDevicePool);
269 } 272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698