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

Side by Side Diff: tools/test.dart

Issue 9414032: Add the vm internal dart tests into the test suite. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | « runtime/tests/vm/vm_dart.status ('k') | tools/test-runtime.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) 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 queue.addTestSuite(new LanguageTestSuite(conf)); 87 queue.addTestSuite(new LanguageTestSuite(conf));
88 } 88 }
89 if (selectors.containsKey('isolate')) { 89 if (selectors.containsKey('isolate')) {
90 queue.addTestSuite(new IsolateTestSuite(conf)); 90 queue.addTestSuite(new IsolateTestSuite(conf));
91 } 91 }
92 if (selectors.containsKey('utils')) { 92 if (selectors.containsKey('utils')) {
93 queue.addTestSuite(new UtilsTestSuite(conf)); 93 queue.addTestSuite(new UtilsTestSuite(conf));
94 } 94 }
95 if (conf['component'] == 'vm' && selectors.containsKey('vm')) { 95 if (conf['component'] == 'vm' && selectors.containsKey('vm')) {
96 queue.addTestSuite(new VMTestSuite(conf)); 96 queue.addTestSuite(new VMTestSuite(conf));
97 queue.addTestSuite(new VMDartTestSuite(conf));
97 } 98 }
98 if (selectors.containsKey('frog')) { 99 if (selectors.containsKey('frog')) {
99 queue.addTestSuite(new FrogTestSuite(conf)); 100 queue.addTestSuite(new FrogTestSuite(conf));
100 } 101 }
101 if (selectors.containsKey('leg')) { 102 if (selectors.containsKey('leg')) {
102 queue.addTestSuite(new LegTestSuite(conf)); 103 queue.addTestSuite(new LegTestSuite(conf));
103 } 104 }
104 if (selectors.containsKey('leg_only')) { 105 if (selectors.containsKey('leg_only')) {
105 queue.addTestSuite(new LegOnlyTestSuite(conf)); 106 queue.addTestSuite(new LegOnlyTestSuite(conf));
106 } 107 }
(...skipping 28 matching lines...) Expand all
135 // Start process queue. 136 // Start process queue.
136 var queue = new ProcessQueue(maxProcesses, 137 var queue = new ProcessQueue(maxProcesses,
137 progressIndicator, 138 progressIndicator,
138 startTime, 139 startTime,
139 printTiming, 140 printTiming,
140 enqueueConfiguration, 141 enqueueConfiguration,
141 verbose, 142 verbose,
142 listTests, 143 listTests,
143 keepGeneratedTests); 144 keepGeneratedTests);
144 } 145 }
OLDNEW
« no previous file with comments | « runtime/tests/vm/vm_dart.status ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698