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

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

Issue 11364129: Added support for logging the output of failed flaky tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: tools/testing/dart/test_options.dart
diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
index 97301ea31884cda2f017b8fdf322cb9c9d0c1cfc..fdd676fd9a31bbbb73fd57aa21c41ce7c0b9ed2e 100644
--- a/tools/testing/dart/test_options.dart
+++ b/tools/testing/dart/test_options.dart
@@ -268,7 +268,15 @@ Note: currently only implemented for dart2js.''',
['-n', '--nobatch'],
[],
false,
- 'bool')];
+ 'bool'),
+ new _TestOptionSpecification(
+ 'append_flaky_log',
+ 'Do not delete the old flaky log but rather append to it.',
+ ['--append_flaky_log'],
+ [],
+ false,
+ 'bool'
+ ),];
}

Powered by Google App Engine
This is Rietveld 408576698