Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index 12cff100c5a64c6acbc267704e242cb41a0f82d5..da3a85e48fa89865378538ed2f7a2b658f9843ae 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -126,6 +126,10 @@ main() { |
| } |
| var testSuites = new List<TestSuite>(); |
| + // FIXME(kustermann,ricow): This is boken and should be fixed ASAP. |
|
Emily Fortuna
2013/02/16 02:22:01
nit: typo -- broken
kustermann
2013/02/18 09:27:02
Done.
|
| + // Issue: 8366 |
| + TestingServerRunner.setBuildDir(firstConf); |
| + TestingServerRunner.setPackageRootDir(firstConf); |
|
Emily Fortuna
2013/02/16 02:22:01
I don't understand this change. Why move line 137
kustermann
2013/02/18 09:27:02
Well, there are two things here (I don't know whic
Emily Fortuna
2013/02/19 17:50:19
Sgtm. I was referring to line 132, the line I comm
|
| var maxBrowserProcesses = maxProcesses; |
| for (var conf in configurations) { |
| // There should not be more than one InternetExplorerDriver instance |
| @@ -134,7 +138,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)); |