| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |