19cb0cafb7
- Get rid of baseCommand, which is only ever an empty list. - Move some utility classes out of the giant test_suite.dart. R=whesse@google.com Review-Url: https://codereview.chromium.org/2915843003 .
18 lines
598 B
Dart
18 lines
598 B
Dart
// Copyright (c) 2017, 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.md file.
|
|
|
|
import 'configuration.dart';
|
|
import 'options.dart';
|
|
import 'test_configurations.dart';
|
|
import 'utils.dart';
|
|
|
|
void main(List<String> arguments) {
|
|
TestUtils.setDartDirUri(Uri.base);
|
|
var configurations = <Configuration>[];
|
|
for (var argument in arguments) {
|
|
configurations.addAll(new OptionsParser().parse(argument.split(" ")));
|
|
}
|
|
testConfigurations(configurations);
|
|
}
|