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

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

Issue 96603002: Remove the command-specific outcome temporarily when writing out the .test-outcome.log file (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/test_progress.dart
diff --git a/dart/tools/testing/dart/test_progress.dart b/dart/tools/testing/dart/test_progress.dart
index 173abf914931b9bc3b935ceb22e133cb7025dbfb..1ebc5411dd6987d43efa5a879d900debee19a75d 100644
--- a/dart/tools/testing/dart/test_progress.dart
+++ b/dart/tools/testing/dart/test_progress.dart
@@ -210,12 +210,10 @@ class TestOutcomeLogWriter extends EventListener {
* command_results: [
* {
* name: 'dart2js',
- * outcome: 'PASS',
* duration: 2400.44,
* },
* {
* name: 'ff',
- * outcome: 'RuntimeError',
* duration: 200.2,
* },
* ],
@@ -248,7 +246,6 @@ class TestOutcomeLogWriter extends EventListener {
totalDuration += duration;
commandResults.add({
'name': command.displayName,
- 'outcome': "${output.result(test)}",
'duration': duration,
});
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698