Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Classes and methods for executing tests. | 6 * Classes and methods for executing tests. |
| 7 * | 7 * |
| 8 * This module includes: | 8 * This module includes: |
| 9 * - Managing parallel execution of tests, including timeout checks. | 9 * - Managing parallel execution of tests, including timeout checks. |
| 10 * - Evaluating the output of each test as pass/fail/crash/timeout. | 10 * - Evaluating the output of each test as pass/fail/crash/timeout. |
| (...skipping 1631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1642 } | 1642 } |
| 1643 | 1643 |
| 1644 void eventAllTestsKnown() { | 1644 void eventAllTestsKnown() { |
| 1645 for (var listener in _eventListener) { | 1645 for (var listener in _eventListener) { |
| 1646 listener.allTestsKnown(); | 1646 listener.allTestsKnown(); |
| 1647 } | 1647 } |
| 1648 } | 1648 } |
| 1649 | 1649 |
| 1650 void eventAllTestsDone() { | 1650 void eventAllTestsDone() { |
| 1651 for (var listener in _eventListener) { | 1651 for (var listener in _eventListener) { |
| 1652 listener.allDone(); | 1652 listener.allDone(_globalConfiguration); |
|
Bill Hesse
2017/09/01 11:56:14
I think we can avoid this. The one thing we need
mkroghj
2017/09/04 10:43:35
Done.
| |
| 1653 } | 1653 } |
| 1654 _allDone(); | 1654 _allDone(); |
| 1655 } | 1655 } |
| 1656 } | 1656 } |
| OLD | NEW |