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

Side by Side Diff: tools/test.dart

Issue 10828310: Move tests for things in /pkg into the right places for packages (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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
« no previous file with comments | « tests/lib/logging/logging_test.dart ('k') | no next file » | 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) 2012, 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 /** 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 27 matching lines...) Expand all
38 /** 38 /**
39 * The directories that contain test suites which follow the conventions 39 * The directories that contain test suites which follow the conventions
40 * required by [StandardTestSuite]'s forDirectory constructor. 40 * required by [StandardTestSuite]'s forDirectory constructor.
41 * New test suites should follow this convention because it makes it much 41 * New test suites should follow this convention because it makes it much
42 * simpler to add them to test.dart. Existing test suites should be 42 * simpler to add them to test.dart. Existing test suites should be
43 * moved to here, if possible. 43 * moved to here, if possible.
44 */ 44 */
45 final TEST_SUITE_DIRECTORIES = const [ 45 final TEST_SUITE_DIRECTORIES = const [
46 const Path('frog/tests/await'), 46 const Path('frog/tests/await'),
47 const Path('frog/tests/frog'), 47 const Path('frog/tests/frog'),
48 const Path('pkg'),
48 const Path('runtime/tests/vm'), 49 const Path('runtime/tests/vm'),
49 const Path('samples/tests/samples'), 50 const Path('samples/tests/samples'),
50 const Path('tests/benchmark_smoke'), 51 const Path('tests/benchmark_smoke'),
51 const Path('tests/compiler/dart2js'), 52 const Path('tests/compiler/dart2js'),
52 const Path('tests/compiler/dart2js_extra'), 53 const Path('tests/compiler/dart2js_extra'),
53 const Path('tests/compiler/dart2js_native'), 54 const Path('tests/compiler/dart2js_native'),
54 const Path('tests/corelib'), 55 const Path('tests/corelib'),
55 const Path('tests/dom'), 56 const Path('tests/dom'),
56 const Path('tests/html'), 57 const Path('tests/html'),
57 const Path('tests/isolate'), 58 const Path('tests/isolate'),
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 129
129 // Start process queue. 130 // Start process queue.
130 var queue = new ProcessQueue(maxProcesses, 131 var queue = new ProcessQueue(maxProcesses,
131 progressIndicator, 132 progressIndicator,
132 startTime, 133 startTime,
133 printTiming, 134 printTiming,
134 enqueueConfiguration, 135 enqueueConfiguration,
135 verbose, 136 verbose,
136 listTests); 137 listTests);
137 } 138 }
OLDNEW
« no previous file with comments | « tests/lib/logging/logging_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698