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

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

Issue 2583453002: Enable strong-mode test suite for dartk. (Closed)
Patch Set: Created 4 years 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 | « tests/lib_strong/lib_strong_kernel.status ('k') | no next file » | 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 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 22 matching lines...) Expand all
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('runtime/observatory/tests/observatory_ui'),
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/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'),
48 new Path('tests/language_strong'),
47 new Path('tests/lib'), 49 new Path('tests/lib'),
50 new Path('tests/lib_strong'),
48 new Path('tests/standalone'), 51 new Path('tests/standalone'),
49 new Path('tests/utils'), 52 new Path('tests/utils'),
50 new Path('utils/tests/css'), 53 new Path('utils/tests/css'),
51 new Path('utils/tests/peg'), 54 new Path('utils/tests/peg'),
52 ]; 55 ];
53 56
54 Future testConfigurations(List<Map> configurations) async { 57 Future testConfigurations(List<Map> configurations) async {
55 var startTime = new DateTime.now(); 58 var startTime = new DateTime.now();
56 // Extract global options from first configuration. 59 // Extract global options from first configuration.
57 var firstConf = configurations[0]; 60 var firstConf = configurations[0];
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 maxBrowserProcesses, 309 maxBrowserProcesses,
307 startTime, 310 startTime,
308 testSuites, 311 testSuites,
309 eventListener, 312 eventListener,
310 allTestsFinished, 313 allTestsFinished,
311 verbose, 314 verbose,
312 recordingPath, 315 recordingPath,
313 recordingOutputPath, 316 recordingOutputPath,
314 adbDevicePool); 317 adbDevicePool);
315 } 318 }
OLDNEW
« no previous file with comments | « tests/lib_strong/lib_strong_kernel.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698