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 /** | 5 /** |
6 * Tool for running co19 tests. Used when updating co19. | 6 * Tool for running co19 tests. Used when updating co19. |
7 * | 7 * |
8 * Currently, this tool is merely a convenience around multiple | 8 * Currently, this tool is merely a convenience around multiple |
9 * invocations of test.dart. Long term, we hope to evolve this into a | 9 * invocations of test.dart. Long term, we hope to evolve this into a |
10 * script that can automate most of the tasks necessary when updating | 10 * script that can automate most of the tasks necessary when updating |
(...skipping 12 matching lines...) Expand all Loading... |
23 import "test_configurations.dart"; | 23 import "test_configurations.dart"; |
24 | 24 |
25 const List<String> COMMON_ARGUMENTS = | 25 const List<String> COMMON_ARGUMENTS = |
26 const <String>['--report', '--progress=diff', 'co19']; | 26 const <String>['--report', '--progress=diff', 'co19']; |
27 | 27 |
28 const List<List<String>> COMMAND_LINES = const <List<String>>[ | 28 const List<List<String>> COMMAND_LINES = const <List<String>>[ |
29 const <String>['-mrelease,debug', '-rvm', '-cnone'], | 29 const <String>['-mrelease,debug', '-rvm', '-cnone'], |
30 const <String>['-mrelease,debug', '-rvm', '-cnone', '--checked'], | 30 const <String>['-mrelease,debug', '-rvm', '-cnone', '--checked'], |
31 const <String>['-mrelease', '-rnone', '-cdartanalyzer'], | 31 const <String>['-mrelease', '-rnone', '-cdartanalyzer'], |
32 const <String>['-mrelease', '-rnone', '-cdart2analyzer'], | 32 const <String>['-mrelease', '-rnone', '-cdart2analyzer'], |
33 const <String>['-mrelease', '-rvm', '-cdart2dart', '--use-sdk'], | |
34 const <String>['-mrelease', '-rvm', '-cdart2dart', '--use-sdk', '--minified'
], | |
35 const <String>['-mrelease', '-rd8', '-cdart2js', '--use-sdk'], | 33 const <String>['-mrelease', '-rd8', '-cdart2js', '--use-sdk'], |
36 const <String>['-mrelease', '-rd8,jsshell', '-cdart2js', '--use-sdk', | 34 const <String>['-mrelease', '-rd8,jsshell', '-cdart2js', '--use-sdk', |
37 '--minified'], | 35 '--minified'], |
38 const <String>['-mrelease', '-rd8,jsshell', '-cdart2js', '--use-sdk', | 36 const <String>['-mrelease', '-rd8,jsshell', '-cdart2js', '--use-sdk', |
39 '--checked'], | 37 '--checked'], |
40 const <String>['-mrelease', '-rdartium', '-cnone', '--use-sdk', | 38 const <String>['-mrelease', '-rdartium', '-cnone', '--use-sdk', |
41 '--checked'], | 39 '--checked'], |
42 const <String>['-mrelease', '-rdartium', '-cnone', '--use-sdk'], | 40 const <String>['-mrelease', '-rdartium', '-cnone', '--use-sdk'], |
43 ]; | 41 ]; |
44 | 42 |
45 void main(List<String> args) { | 43 void main(List<String> args) { |
46 TestUtils.setDartDirUri(Platform.script.resolve('../../..')); | 44 TestUtils.setDartDirUri(Platform.script.resolve('../../..')); |
47 var optionsParser = new TestOptionsParser(); | 45 var optionsParser = new TestOptionsParser(); |
48 List<Map> configurations = <Map>[]; | 46 List<Map> configurations = <Map>[]; |
49 for (var commandLine in COMMAND_LINES) { | 47 for (var commandLine in COMMAND_LINES) { |
50 List arguments = <String>[]; | 48 List arguments = <String>[]; |
51 arguments.addAll(COMMON_ARGUMENTS); | 49 arguments.addAll(COMMON_ARGUMENTS); |
52 arguments.addAll(args); | 50 arguments.addAll(args); |
53 arguments.addAll(commandLine); | 51 arguments.addAll(commandLine); |
54 configurations.addAll(optionsParser.parse(arguments)); | 52 configurations.addAll(optionsParser.parse(arguments)); |
55 } | 53 } |
56 | 54 |
57 if (configurations != null || configurations.length > 0) { | 55 if (configurations != null || configurations.length > 0) { |
58 testConfigurations(configurations); | 56 testConfigurations(configurations); |
59 } | 57 } |
60 } | 58 } |
61 | 59 |
OLD | NEW |