Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index 12cff100c5a64c6acbc267704e242cb41a0f82d5..76422f300ea532e7d223b427765b84e59028355f 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -126,6 +126,9 @@ main() { |
| } |
| var testSuites = new List<TestSuite>(); |
| + // FIXME(kustermann,ricow): This is boken and should be fixed ASAP. |
|
ricow1
2013/02/06 08:13:28
lets have a bug to track this
kustermann
2013/02/06 16:33:51
Done.
|
| + TestingServerRunner.setBuildDir(firstConf); |
| + TestingServerRunner.setPackageRootDir(firstConf); |
| var maxBrowserProcesses = maxProcesses; |
| for (var conf in configurations) { |
| // There should not be more than one InternetExplorerDriver instance |
| @@ -134,7 +137,6 @@ main() { |
| if (conf['runtime'].startsWith('ie')) { |
| maxBrowserProcesses = 1; |
| } |
| - TestingServerRunner.setPackageRootDir(conf); |
| for (String key in selectors.keys) { |
| if (key == 'co19') { |
| testSuites.add(new Co19TestSuite(conf)); |