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

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

Issue 1697203002: Switch to downloaded SDK executable, drop executables in testing/bin. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « tools/testing/bin/windows/dart.exe.sha1 ('k') | tools/testing/dart/http_server.dart » ('j') | 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 /** 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
11 * co19. 11 * co19.
12 * 12 *
13 * Usage: 13 * Usage:
14 * [: ./tools/testing/bin/$OS/dart tools/testing/dart/co19_test.dart :] 14 * [: dart tools/testing/dart/co19_test.dart :]
15 */ 15 */
16 16
17 library co19_test; 17 library co19_test;
18 18
19 import "dart:io"; 19 import "dart:io";
20 20
21 import "test_options.dart"; 21 import "test_options.dart";
22 import "test_suite.dart"; 22 import "test_suite.dart";
23 import "test_configurations.dart"; 23 import "test_configurations.dart";
24 24
(...skipping 24 matching lines...) Expand all
49 arguments.addAll(args); 49 arguments.addAll(args);
50 arguments.addAll(commandLine); 50 arguments.addAll(commandLine);
51 configurations.addAll(optionsParser.parse(arguments)); 51 configurations.addAll(optionsParser.parse(arguments));
52 } 52 }
53 53
54 if (configurations != null || configurations.length > 0) { 54 if (configurations != null || configurations.length > 0) {
55 testConfigurations(configurations); 55 testConfigurations(configurations);
56 } 56 }
57 } 57 }
58 58
OLDNEW
« no previous file with comments | « tools/testing/bin/windows/dart.exe.sha1 ('k') | tools/testing/dart/http_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698