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

Side by Side Diff: tools/test.dart

Issue 9147058: Hook up the dartdoc tests to test.py, test.dart, and frog/presubmit.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase and upload. Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « frog/presubmit.py ('k') | tools/testing/dart/test_options.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 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 #library("test"); 6 #library("test");
7 7
8 #import("testing/dart/test_runner.dart"); 8 #import("testing/dart/test_runner.dart");
9 #import("testing/dart/test_options.dart"); 9 #import("testing/dart/test_options.dart");
10 10
11 #import("../tests/co19/test_config.dart"); 11 #import("../tests/co19/test_config.dart");
12 #import("../tests/corelib/test_config.dart"); 12 #import("../tests/corelib/test_config.dart");
13 #import("../tests/isolate/test_config.dart"); 13 #import("../tests/isolate/test_config.dart");
14 #import("../tests/language/test_config.dart"); 14 #import("../tests/language/test_config.dart");
15 #import("../tests/standalone/test_config.dart"); 15 #import("../tests/standalone/test_config.dart");
16 #import("../tests/stub-generator/test_config.dart"); 16 #import("../tests/stub-generator/test_config.dart");
17 #import("../runtime/tests/vm/test_config.dart"); 17 #import("../runtime/tests/vm/test_config.dart");
18 #import("../samples/tests/samples/test_config.dart"); 18 #import("../samples/tests/samples/test_config.dart");
19 #import("../client/tests/dartc/test_config.dart"); 19 #import("../client/tests/dartc/test_config.dart");
20 #import("../compiler/tests/dartc/test_config.dart"); 20 #import("../compiler/tests/dartc/test_config.dart");
21 #import("../client/tests/client/test_config.dart"); 21 #import("../client/tests/client/test_config.dart");
22 #import("../frog/tests/frog/test_config.dart"); 22 #import("../frog/tests/frog/test_config.dart");
23 #import("../frog/tests/leg/test_config.dart"); 23 #import("../frog/tests/leg/test_config.dart");
24 #import("../frog/tests/leg_only/test_config.dart"); 24 #import("../frog/tests/leg_only/test_config.dart");
25 #import("../frog/tests/await/test_config.dart"); 25 #import("../frog/tests/await/test_config.dart");
26 #import("../utils/tests/css/test_config.dart"); 26 #import("../utils/tests/css/test_config.dart");
27 #import("../utils/tests/dartdoc/test_config.dart");
27 #import("../utils/tests/peg/test_config.dart"); 28 #import("../utils/tests/peg/test_config.dart");
28 29
29 main() { 30 main() {
30 var startTime = new Date.now(); 31 var startTime = new Date.now();
31 var optionsParser = new TestOptionsParser(); 32 var optionsParser = new TestOptionsParser();
32 List<Map> configurations = optionsParser.parse(new Options().arguments); 33 List<Map> configurations = optionsParser.parse(new Options().arguments);
33 if (configurations == null) return; 34 if (configurations == null) return;
34 35
35 // Extract global options from first configuration. 36 // Extract global options from first configuration.
36 var firstConf = configurations[0]; 37 var firstConf = configurations[0];
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 84 }
84 if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) { 85 if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
85 queue.addTestSuite(new ClientDartcTestSuite(conf)); 86 queue.addTestSuite(new ClientDartcTestSuite(conf));
86 } 87 }
87 if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) { 88 if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
88 queue.addTestSuite(new JUnitDartcTestSuite(conf)); 89 queue.addTestSuite(new JUnitDartcTestSuite(conf));
89 } 90 }
90 if (selectors.containsKey('css')) { 91 if (selectors.containsKey('css')) {
91 queue.addTestSuite(new CssTestSuite(conf)); 92 queue.addTestSuite(new CssTestSuite(conf));
92 } 93 }
94 if (selectors.containsKey('dartdoc')) {
95 queue.addTestSuite(new DartdocTestSuite(conf));
96 }
93 if (selectors.containsKey('peg')) { 97 if (selectors.containsKey('peg')) {
94 queue.addTestSuite(new PegTestSuite(conf)); 98 queue.addTestSuite(new PegTestSuite(conf));
95 } 99 }
96 if (selectors.containsKey('await')) { 100 if (selectors.containsKey('await')) {
97 queue.addTestSuite(new AwaitTestSuite(conf)); 101 queue.addTestSuite(new AwaitTestSuite(conf));
98 } 102 }
99 if (selectors.containsKey('client')) { 103 if (selectors.containsKey('client')) {
100 queue.addTestSuite(new ClientTestSuite(conf)); 104 queue.addTestSuite(new ClientTestSuite(conf));
101 } 105 }
102 106
103 return true; 107 return true;
104 } 108 }
105 109
106 // Start process queue. 110 // Start process queue.
107 var queue = new ProcessQueue(maxProcesses, 111 var queue = new ProcessQueue(maxProcesses,
108 progressIndicator, 112 progressIndicator,
109 startTime, 113 startTime,
110 printTiming, 114 printTiming,
111 enqueueConfiguration, 115 enqueueConfiguration,
112 verbose: verbose, 116 verbose: verbose,
113 listTests: listTests); 117 listTests: listTests);
114 } 118 }
OLDNEW
« no previous file with comments | « frog/presubmit.py ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698