| 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 // TODO(ager): Get rid of this version of test.dart when we don't have | 6 // TODO(ager): Get rid of this version of test.dart when we don't have |
| 7 // to worry about the special runtime checkout anymore. | 7 // to worry about the special runtime checkout anymore. |
| 8 // This file is identical to test.dart with test suites in the | 8 // This file is identical to test.dart with test suites in the |
| 9 // directories samples, client, compiler, and utils removed. | 9 // directories samples, client, compiler, and utils removed. |
| 10 | 10 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 if (runningBrowserTests) startHttpServer('127.0.0.1', 9876); | 106 if (runningBrowserTests) startHttpServer('127.0.0.1', 9876); |
| 107 } | 107 } |
| 108 | 108 |
| 109 // Start process queue. | 109 // Start process queue. |
| 110 new ProcessQueue( | 110 new ProcessQueue( |
| 111 maxProcesses, | 111 maxProcesses, |
| 112 progressIndicator, | 112 progressIndicator, |
| 113 startTime, | 113 startTime, |
| 114 printTiming, | 114 printTiming, |
| 115 enqueueConfiguration, | 115 enqueueConfiguration, |
| 116 () => terminateHttpServer(), | 116 () => TestingServerRunner.terminateHttpServers(), |
| 117 verbose, | 117 verbose, |
| 118 listTests); | 118 listTests); |
| 119 } | 119 } |
| OLD | NEW |