Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1052)

Side by Side Diff: tools/testing/dart/test_runner.dart

Issue 3005013002: Added json result of test output to output debug directory. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698