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

Side by Side Diff: tools/test.dart

Issue 9956005: Fix configuration check condition so that the test scripts runs the vm unit tests when running the … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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 | « no previous file | 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 } 99 }
100 if (selectors.containsKey('language')) { 100 if (selectors.containsKey('language')) {
101 queue.addTestSuite(new LanguageTestSuite(conf)); 101 queue.addTestSuite(new LanguageTestSuite(conf));
102 } 102 }
103 if (selectors.containsKey('isolate')) { 103 if (selectors.containsKey('isolate')) {
104 queue.addTestSuite(new IsolateTestSuite(conf)); 104 queue.addTestSuite(new IsolateTestSuite(conf));
105 } 105 }
106 if (selectors.containsKey('utils')) { 106 if (selectors.containsKey('utils')) {
107 queue.addTestSuite(new UtilsTestSuite(conf)); 107 queue.addTestSuite(new UtilsTestSuite(conf));
108 } 108 }
109 if (conf['component'] == 'vm' && selectors.containsKey('vm')) { 109 if (conf['runtime'] == 'vm' && selectors.containsKey('vm')) {
110 queue.addTestSuite(new VMTestSuite(conf)); 110 queue.addTestSuite(new VMTestSuite(conf));
111 queue.addTestSuite(new VMDartTestSuite(conf)); 111 queue.addTestSuite(new VMDartTestSuite(conf));
112 } 112 }
113 if (selectors.containsKey('frog')) { 113 if (selectors.containsKey('frog')) {
114 queue.addTestSuite(new FrogTestSuite(conf)); 114 queue.addTestSuite(new FrogTestSuite(conf));
115 } 115 }
116 if (selectors.containsKey('leg')) { 116 if (selectors.containsKey('leg')) {
117 queue.addTestSuite(new LegTestSuite(conf)); 117 queue.addTestSuite(new LegTestSuite(conf));
118 } 118 }
119 if (selectors.containsKey('leg_only')) { 119 if (selectors.containsKey('leg_only')) {
(...skipping 30 matching lines...) Expand all
150 // Start process queue. 150 // Start process queue.
151 var queue = new ProcessQueue(maxProcesses, 151 var queue = new ProcessQueue(maxProcesses,
152 progressIndicator, 152 progressIndicator,
153 startTime, 153 startTime,
154 printTiming, 154 printTiming,
155 enqueueConfiguration, 155 enqueueConfiguration,
156 verbose, 156 verbose,
157 listTests, 157 listTests,
158 keepGeneratedTests); 158 keepGeneratedTests);
159 } 159 }
OLDNEW
« no previous file with comments | « no previous file | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698