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

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

Issue 2979073002: "Set up directories.." commit below broke the buildbot tests, two others are collateral damage. (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
« no previous file with comments | « tools/testing/dart/options.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'),
43 new Path('tests/corelib_strong'), 42 new Path('tests/corelib_strong'),
44 new Path('tests/html'), 43 new Path('tests/html'),
45 new Path('tests/isolate'), 44 new Path('tests/isolate'),
46 new Path('tests/kernel'), 45 new Path('tests/kernel'),
47 new Path('tests/language'), 46 new Path('tests/language'),
48 new Path('tests/language_strong'), 47 new Path('tests/language_strong'),
49 new Path('tests/language_2'),
50 new Path('tests/lib'), 48 new Path('tests/lib'),
51 new Path('tests/lib_strong'), 49 new Path('tests/lib_strong'),
52 new Path('tests/lib_2'),
53 new Path('tests/standalone'), 50 new Path('tests/standalone'),
54 new Path('tests/utils'), 51 new Path('tests/utils'),
55 new Path('utils/tests/css'), 52 new Path('utils/tests/css'),
56 new Path('utils/tests/peg'), 53 new Path('utils/tests/peg'),
57 ]; 54 ];
58 55
59 // This file is created by gclient runhooks. 56 // This file is created by gclient runhooks.
60 final VS_TOOLCHAIN_FILE = new Path("build/win_toolchain.json"); 57 final VS_TOOLCHAIN_FILE = new Path("build/win_toolchain.json");
61 58
62 Future testConfigurations(List<Configuration> configurations) async { 59 Future testConfigurations(List<Configuration> configurations) async {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 // Start all the HTTP servers required before starting the process queue. 260 // Start all the HTTP servers required before starting the process queue.
264 if (!serverFutures.isEmpty) { 261 if (!serverFutures.isEmpty) {
265 await Future.wait(serverFutures); 262 await Future.wait(serverFutures);
266 } 263 }
267 264
268 // [firstConf] is needed here, since the ProcessQueue needs to know the 265 // [firstConf] is needed here, since the ProcessQueue needs to know the
269 // settings of 'noBatch' and 'local_ip' 266 // settings of 'noBatch' and 'local_ip'
270 new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime, 267 new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime,
271 testSuites, eventListener, allTestsFinished, verbose, adbDevicePool); 268 testSuites, eventListener, allTestsFinished, verbose, adbDevicePool);
272 } 269 }
OLDNEW
« no previous file with comments | « tools/testing/dart/options.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698