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

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

Issue 2801143003: Remove the "pkgbuild" step on the bots. (Closed)
Patch Set: Rebase. Created 3 years, 8 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
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 library package_testing_support; 5 library package_testing_support;
6 6
7 import 'dart:convert' show JSON;
8
9 import 'test_configurations.dart' show testConfigurations; 7 import 'test_configurations.dart' show testConfigurations;
10 8
11 import 'test_options.dart' show TestOptionsParser; 9 import 'test_options.dart' show TestOptionsParser;
12 10
13 import 'test_suite.dart' show TestUtils; 11 import 'test_suite.dart' show TestUtils;
14 12
15 main(List<String> arguments) { 13 main(List<String> arguments) {
16 TestUtils.setDartDirUri(Uri.base); 14 TestUtils.setDartDirUri(Uri.base);
17 List<Map> configurations = <Map>[]; 15 List<Map> configurations = <Map>[];
18 for (String argument in arguments) { 16 for (String argument in arguments) {
19 configurations.addAll(new TestOptionsParser().parse(argument.split(" "))); 17 configurations.addAll(new TestOptionsParser().parse(argument.split(" ")));
20 } 18 }
21 testConfigurations(configurations); 19 testConfigurations(configurations);
22 } 20 }
OLDNEW
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698