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

Unified Diff: lib/src/runner/configuration/load.dart

Issue 2099553002: Add an option to run skipped tests. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes Created 4 years, 5 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 | « lib/src/runner/configuration/args.dart ('k') | lib/src/runner/engine.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/configuration/load.dart
diff --git a/lib/src/runner/configuration/load.dart b/lib/src/runner/configuration/load.dart
index 8ca7c81c69650be75cc8239770f13f66979145a8..4d0fb4844fe29cf9d684308102fedb00430a4f17 100644
--- a/lib/src/runner/configuration/load.dart
+++ b/lib/src/runner/configuration/load.dart
@@ -169,6 +169,7 @@ class _ConfigurationLoader {
}
var pauseAfterLoad = _getBool("pause_after_load");
+ var runSkipped = _getBool("run_skipped");
var reporter = _getString("reporter");
if (reporter != null && !allReporters.contains(reporter)) {
@@ -193,6 +194,7 @@ class _ConfigurationLoader {
return new Configuration(
pauseAfterLoad: pauseAfterLoad,
+ runSkipped: runSkipped,
reporter: reporter,
concurrency: concurrency,
platforms: platforms,
« no previous file with comments | « lib/src/runner/configuration/args.dart ('k') | lib/src/runner/engine.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698