c1b56a9ea0
- Run dartfmt --fix. This converts JavaDoc comments to "///", removes "new" and extraneous "const", and a couple of other things. - Fix SCREAMING_CAPS constants to lowerCamelCase. - Use collection literals where possible. - Use UI-as-code in a couple of places where it seemed obvious. - Use "var" for more local variables. - Use "const" instead of "final" when possible. - Make members private when possible. Deleted a few that then became obviously unused. - ".length > 0" -> ".isNotEmpty". There are no meaningful changes. Change-Id: Ic6c5a74b2af9b3ebcbe881dbed69f65488bdef09 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/105880 Commit-Queue: Bob Nystrom <rnystrom@google.com> Reviewed-by: William Hesse <whesse@google.com>
56 lines
1.8 KiB
Dart
56 lines
1.8 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/// Tool for running co19 tests. Used when updating co19.
|
|
///
|
|
/// Currently, this tool is merely a convenience around multiple
|
|
/// invocations of test.dart. Long term, we hope to evolve this into a
|
|
/// script that can automate most of the tasks necessary when updating
|
|
/// co19.
|
|
///
|
|
/// Usage:
|
|
/// [: dart pkg/test_runner/tool/co19.dart :]
|
|
import 'package:test_runner/src/configuration.dart';
|
|
import 'package:test_runner/src/options.dart';
|
|
import 'package:test_runner/src/test_configurations.dart';
|
|
|
|
const List<String> _commonArguments = <String>[
|
|
'--report',
|
|
'--progress=diff',
|
|
'co19'
|
|
];
|
|
|
|
const List<List<String>> _commandLines = <List<String>>[
|
|
<String>['-mrelease,debug', '-rvm', '-cnone'],
|
|
<String>['-mrelease,debug', '-rvm', '-cnone', '--checked'],
|
|
<String>['-mrelease', '-rnone', '-cdart2analyzer'],
|
|
<String>['-mrelease', '-rd8', '-cdart2js', '--use-sdk'],
|
|
<String>['-mrelease', '-rd8,jsshell', '-cdart2js', '--use-sdk', '--minified'],
|
|
<String>['-mrelease', '-rd8,jsshell', '-cdart2js', '--use-sdk', '--checked'],
|
|
<String>[
|
|
'-mrelease',
|
|
'-rd8,jsshell',
|
|
'-cdart2js',
|
|
'--use-sdk',
|
|
'--checked',
|
|
'--fast-startup'
|
|
],
|
|
];
|
|
|
|
void main(List<String> args) {
|
|
var optionsParser = OptionsParser();
|
|
var configurations = <TestConfiguration>[];
|
|
for (var commandLine in _commandLines) {
|
|
var arguments = <String>[];
|
|
arguments.addAll(_commonArguments);
|
|
arguments.addAll(args);
|
|
arguments.addAll(commandLine);
|
|
configurations.addAll(optionsParser.parse(arguments));
|
|
}
|
|
|
|
if (configurations != null || configurations.isNotEmpty) {
|
|
testConfigurations(configurations);
|
|
}
|
|
}
|