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

Side by Side Diff: tools/test.dart

Issue 10536169: Move frog/tests/{leg,leg_only,frog_native} to tests/compiler/. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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/compiler/dart2js_native/frog_native.status ('k') | utils/compiler/buildbot.py » ('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) 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 26 matching lines...) Expand all
37 /** 37 /**
38 * The directories that contain test suites which follow the conventions 38 * The directories that contain test suites which follow the conventions
39 * required by [StandardTestSuite]'s forDirectory constructor. 39 * required by [StandardTestSuite]'s forDirectory constructor.
40 * New test suites should follow this convention because it makes it much 40 * New test suites should follow this convention because it makes it much
41 * simpler to add them to test.dart. Existing test suites should be 41 * simpler to add them to test.dart. Existing test suites should be
42 * moved to here, if possible. 42 * moved to here, if possible.
43 */ 43 */
44 final TEST_SUITE_DIRECTORIES = const [ 44 final TEST_SUITE_DIRECTORIES = const [
45 'frog/tests/await', 45 'frog/tests/await',
46 'frog/tests/frog', 46 'frog/tests/frog',
47 'frog/tests/frog_native',
48 'frog/tests/leg',
49 'frog/tests/leg_only',
50 'runtime/tests/vm', 47 'runtime/tests/vm',
51 'samples/tests/samples', 48 'samples/tests/samples',
52 'tests/benchmark_smoke', 49 'tests/benchmark_smoke',
50 'tests/compiler/dart2js',
51 'tests/compiler/dart2js_extra',
52 'tests/compiler/dart2js_native',
53 'tests/corelib', 53 'tests/corelib',
54 'tests/dom', 54 'tests/dom',
55 'tests/html', 55 'tests/html',
56 'tests/isolate', 56 'tests/isolate',
57 'tests/json', 57 'tests/json',
58 'tests/language', 58 'tests/language',
59 'tests/lib', 59 'tests/lib',
60 'tests/standalone', 60 'tests/standalone',
61 'tests/utils', 61 'tests/utils',
62 'utils/tests/css', 62 'utils/tests/css',
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 // Start process queue. 128 // Start process queue.
129 var queue = new ProcessQueue(maxProcesses, 129 var queue = new ProcessQueue(maxProcesses,
130 progressIndicator, 130 progressIndicator,
131 startTime, 131 startTime,
132 printTiming, 132 printTiming,
133 enqueueConfiguration, 133 enqueueConfiguration,
134 verbose, 134 verbose,
135 listTests); 135 listTests);
136 } 136 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js_native/frog_native.status ('k') | utils/compiler/buildbot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698