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

Side by Side Diff: dart/tools/test.dart

Issue 9295043: Create a URI class in utils/ (based on client/util/). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments and *add* the new test suite Created 8 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 | Annotate | Revision Log
« no previous file with comments | « dart/tests/utils/utils.status ('k') | dart/tools/test-compiler.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) 2012, 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("../tests/utils/test_config.dart");
17 #import("../runtime/tests/vm/test_config.dart"); 18 #import("../runtime/tests/vm/test_config.dart");
18 #import("../samples/tests/samples/test_config.dart"); 19 #import("../samples/tests/samples/test_config.dart");
19 #import("../client/tests/dartc/test_config.dart"); 20 #import("../client/tests/dartc/test_config.dart");
20 #import("../compiler/tests/dartc/test_config.dart"); 21 #import("../compiler/tests/dartc/test_config.dart");
21 #import("../client/tests/client/test_config.dart"); 22 #import("../client/tests/client/test_config.dart");
22 #import("../frog/tests/frog/test_config.dart"); 23 #import("../frog/tests/frog/test_config.dart");
23 #import("../frog/tests/leg/test_config.dart"); 24 #import("../frog/tests/leg/test_config.dart");
24 #import("../frog/tests/leg_only/test_config.dart"); 25 #import("../frog/tests/leg_only/test_config.dart");
25 #import("../frog/tests/await/test_config.dart"); 26 #import("../frog/tests/await/test_config.dart");
26 #import("../utils/tests/css/test_config.dart"); 27 #import("../utils/tests/css/test_config.dart");
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } 65 }
65 if (selectors.containsKey('language')) { 66 if (selectors.containsKey('language')) {
66 queue.addTestSuite(new LanguageTestSuite(conf)); 67 queue.addTestSuite(new LanguageTestSuite(conf));
67 } 68 }
68 if (selectors.containsKey('isolate')) { 69 if (selectors.containsKey('isolate')) {
69 queue.addTestSuite(new IsolateTestSuite(conf)); 70 queue.addTestSuite(new IsolateTestSuite(conf));
70 } 71 }
71 if (selectors.containsKey('stub-generator')) { 72 if (selectors.containsKey('stub-generator')) {
72 queue.addTestSuite(new StubGeneratorTestSuite(conf)); 73 queue.addTestSuite(new StubGeneratorTestSuite(conf));
73 } 74 }
75 if (selectors.containsKey('utils')) {
76 queue.addTestSuite(new UtilsTestSuite(conf));
77 }
74 if (conf['component'] == 'vm' && selectors.containsKey('vm')) { 78 if (conf['component'] == 'vm' && selectors.containsKey('vm')) {
75 queue.addTestSuite(new VMTestSuite(conf)); 79 queue.addTestSuite(new VMTestSuite(conf));
76 } 80 }
77 if (selectors.containsKey('frog')) { 81 if (selectors.containsKey('frog')) {
78 queue.addTestSuite(new FrogTestSuite(conf)); 82 queue.addTestSuite(new FrogTestSuite(conf));
79 } 83 }
80 if (selectors.containsKey('leg')) { 84 if (selectors.containsKey('leg')) {
81 queue.addTestSuite(new LegTestSuite(conf)); 85 queue.addTestSuite(new LegTestSuite(conf));
82 } 86 }
83 if (selectors.containsKey('leg_only')) { 87 if (selectors.containsKey('leg_only')) {
(...skipping 27 matching lines...) Expand all
111 // Start process queue. 115 // Start process queue.
112 var queue = new ProcessQueue(maxProcesses, 116 var queue = new ProcessQueue(maxProcesses,
113 progressIndicator, 117 progressIndicator,
114 startTime, 118 startTime,
115 printTiming, 119 printTiming,
116 enqueueConfiguration, 120 enqueueConfiguration,
117 verbose, 121 verbose,
118 listTests, 122 listTests,
119 keepGeneratedTests); 123 keepGeneratedTests);
120 } 124 }
OLDNEW
« no previous file with comments | « dart/tests/utils/utils.status ('k') | dart/tools/test-compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698