| Index: tools/testing/dart/summary_report.dart
|
| diff --git a/tools/testing/dart/summary_report.dart b/tools/testing/dart/summary_report.dart
|
| index 77d800735422d53507ad963c8d2fc5785545db51..d6db9a97680a81fadf9f84e4c052f2c194ecfdfb 100644
|
| --- a/tools/testing/dart/summary_report.dart
|
| +++ b/tools/testing/dart/summary_report.dart
|
| @@ -24,6 +24,8 @@ class SummaryReport {
|
|
|
| int get total => _total;
|
|
|
| + int get skippedOther => _skipped - _skippedByDesign;
|
| +
|
| int get bogus => _nonStandardTestCases.length;
|
|
|
| final List<TestCase> _nonStandardTestCases = <TestCase>[];
|
| @@ -97,7 +99,8 @@ class SummaryReport {
|
| }
|
|
|
| Map<String, int> get values => {
|
| - 'skipped': _skipped,
|
| + 'total': _total,
|
| + 'skippedOther': skippedOther,
|
| 'skippedByDesign': _skippedByDesign,
|
| 'pass': _pass,
|
| 'noCrash': _noCrash,
|
|
|