| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 TestingServerRunner.startHttpServer('127.0.0.1'); | 121 TestingServerRunner.startHttpServer('127.0.0.1'); |
| 122 // We start two servers so that we can test cross-domain tests. | 122 // We start two servers so that we can test cross-domain tests. |
| 123 TestingServerRunner.startHttpServer('127.0.0.1', | 123 TestingServerRunner.startHttpServer('127.0.0.1', |
| 124 allowedPort: TestingServerRunner.serverList[0].port); | 124 allowedPort: TestingServerRunner.serverList[0].port); |
| 125 } | 125 } |
| 126 } | 126 } |
| 127 | 127 |
| 128 var testSuites = new List<TestSuite>(); | 128 var testSuites = new List<TestSuite>(); |
| 129 var maxBrowserProcesses = maxProcesses; | 129 var maxBrowserProcesses = maxProcesses; |
| 130 for (var conf in configurations) { | 130 for (var conf in configurations) { |
| 131 // We can't run multiple IE processes in parallel. | 131 // There should not be more than one InternetExplorerDriver instance |
| 132 // running at a time. For details, see |
| 133 // http://code.google.com/p/selenium/wiki/InternetExplorerDriver. |
| 132 if (conf['runtime'].startsWith('ie')) { | 134 if (conf['runtime'].startsWith('ie')) { |
| 133 maxBrowserProcesses = 1; | 135 maxBrowserProcesses = 1; |
| 134 } | 136 } |
| 135 TestingServerRunner.setPackageRootDir(conf); | 137 TestingServerRunner.setPackageRootDir(conf); |
| 136 for (String key in selectors.keys) { | 138 for (String key in selectors.keys) { |
| 137 if (key == 'co19') { | 139 if (key == 'co19') { |
| 138 testSuites.add(new Co19TestSuite(conf)); | 140 testSuites.add(new Co19TestSuite(conf)); |
| 139 } else if (conf['runtime'] == 'vm' && key == 'vm') { | 141 } else if (conf['runtime'] == 'vm' && key == 'vm') { |
| 140 // vm tests contain both cc tests (added here) and dart tests (added in | 142 // vm tests contain both cc tests (added here) and dart tests (added in |
| 141 // [TEST_SUITE_DIRECTORIES]). | 143 // [TEST_SUITE_DIRECTORIES]). |
| (...skipping 23 matching lines...) Expand all Loading... |
| 165 new ProcessQueue(maxProcesses, | 167 new ProcessQueue(maxProcesses, |
| 166 maxBrowserProcesses, | 168 maxBrowserProcesses, |
| 167 progressIndicator, | 169 progressIndicator, |
| 168 startTime, | 170 startTime, |
| 169 printTiming, | 171 printTiming, |
| 170 testSuites, | 172 testSuites, |
| 171 allTestsFinished, | 173 allTestsFinished, |
| 172 verbose, | 174 verbose, |
| 173 listTests); | 175 listTests); |
| 174 } | 176 } |
| OLD | NEW |