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

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

Issue 2610943002: Remove 'pkg' from the default list of test suites (Closed)
Patch Set: Created 3 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/bots/gn_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_options.dart
diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
index 66e0e0a6cee48e9922f837179173402760132717..8855aec7bd7ee8b26eb3a99d38fe5c46c1ce6a66 100644
--- a/tools/testing/dart/test_options.dart
+++ b/tools/testing/dart/test_options.dart
@@ -23,7 +23,6 @@ const List<String> defaultTestSelectors = const [
'benchmark_smoke',
'utils',
'lib',
- 'pkg',
kustermann 2017/01/04 17:33:40 We need to be careful here. I'm asking for pkg to
'analyze_library',
'service',
'kernel',
@@ -480,7 +479,7 @@ Note: currently only implemented for dart2js.''',
'Exclude suites from default selector, only works when no'
' selector has been specified on the command line',
['--exclude-suite'],
- defaultTestSelectors,
+ [],
null),
new _TestOptionSpecification(
'skip-compilation',
@@ -735,7 +734,7 @@ Note: currently only implemented for dart2js.''',
}
if (config['ie'] && Platform.operatingSystem != 'windows') {
isValid = false;
- print("Warning cannot run Internet Explorer on non-Windows operating"
+ print("Warning: cannot run Internet Explorer on non-Windows operating"
" system.");
}
if (config['shard'] < 1 || config['shard'] > config['shards']) {
@@ -820,8 +819,7 @@ Note: currently only implemented for dart2js.''',
if (selectors.contains(exclude)) {
selectors.remove(exclude);
} else {
- print("Error: default selectors does not contain $exclude");
- exit(1);
+ print("Warning: default selectors does not contain $exclude");
}
}
}
« no previous file with comments | « tools/bots/gn_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698