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

Unified Diff: tools/testing/dart/summary_report.dart

Issue 847873004: Outputing comma-separated report with percentages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/status_reporter.dart ('k') | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « tools/testing/dart/status_reporter.dart ('k') | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698