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

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

Issue 527053002: Support passing in a test suite directory through a flag to the testing scripts (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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
Index: tools/testing/dart/test_options.dart
===================================================================
--- tools/testing/dart/test_options.dart (revision 39722)
+++ tools/testing/dart/test_options.dart (working copy)
@@ -426,6 +426,12 @@
[],
null),
new _TestOptionSpecification(
+ 'suite_dir',
+ 'Additional directory to add to the testing matrix',
+ ['--suite-dir'],
+ [],
+ null),
+ new _TestOptionSpecification(
'exclude_suite',
'Exclude suites from default selector, only works when no'
' selector has been specified on the command line',
@@ -709,6 +715,7 @@
var selectors = configuration['selectors'];
if (selectors is !Map) {
if (selectors == null) {
+ configuration['default_selector'] = true;
selectors = new List.from(defaultTestSelectors);
var exclude_suites = configuration['exclude_suite'] != null ?
configuration['exclude_suite'].split(',') : [];

Powered by Google App Engine
This is Rietveld 408576698