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

Side by Side Diff: tools/test.dart

Issue 22375011: move html5lib code into dart svn repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
OLDNEW
1 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2013, 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 /** 6 /**
7 * This file is the entrypoint of the dart test suite. This suite is used 7 * This file is the entrypoint of the dart test suite. This suite is used
8 * to test: 8 * to test:
9 * 9 *
10 * 1. the dart vm 10 * 1. the dart vm
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 new Path('tests/compiler/dart2js_foreign'), 59 new Path('tests/compiler/dart2js_foreign'),
60 new Path('tests/compiler/dart2js_native'), 60 new Path('tests/compiler/dart2js_native'),
61 new Path('tests/corelib'), 61 new Path('tests/corelib'),
62 new Path('tests/html'), 62 new Path('tests/html'),
63 new Path('tests/isolate'), 63 new Path('tests/isolate'),
64 new Path('tests/json'), 64 new Path('tests/json'),
65 new Path('tests/language'), 65 new Path('tests/language'),
66 new Path('tests/lib'), 66 new Path('tests/lib'),
67 new Path('tests/standalone'), 67 new Path('tests/standalone'),
68 new Path('tests/utils'), 68 new Path('tests/utils'),
69 new Path('third_party/pkg/html5lib'),
Siggi Cherem (dart-lang) 2013/08/12 16:35:54 no need to change this now, but I was wondering if
Jennifer Messerly 2013/08/12 17:55:13 yeah, I had the same thought. it doesn't look like
69 new Path('utils/tests/css'), 70 new Path('utils/tests/css'),
70 new Path('utils/tests/peg'), 71 new Path('utils/tests/peg'),
71 new Path('sdk/lib/_internal/pub'), 72 new Path('sdk/lib/_internal/pub'),
72 // TODO(amouravski): move these to tests/ once they no longer rely on weird 73 // TODO(amouravski): move these to tests/ once they no longer rely on weird
73 // dependencies. 74 // dependencies.
74 new Path('sdk/lib/_internal/dartdoc'), 75 new Path('sdk/lib/_internal/dartdoc'),
75 new Path('tools/dom/docs'), 76 new Path('tools/dom/docs'),
76 ]; 77 ];
77 78
78 void testConfigurations(List<Map> configurations) { 79 void testConfigurations(List<Map> configurations) {
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 void main() { 301 void main() {
301 deleteTemporaryDartDirectories().then((_) { 302 deleteTemporaryDartDirectories().then((_) {
302 var optionsParser = new TestOptionsParser(); 303 var optionsParser = new TestOptionsParser();
303 var configurations = optionsParser.parse(new Options().arguments); 304 var configurations = optionsParser.parse(new Options().arguments);
304 if (configurations != null && configurations.length > 0) { 305 if (configurations != null && configurations.length > 0) {
305 testConfigurations(configurations); 306 testConfigurations(configurations);
306 } 307 }
307 }); 308 });
308 } 309 }
309 310
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698