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

Unified Diff: lib/src/runner.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/backend/declarer.dart ('k') | lib/src/runner/configuration.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner.dart
diff --git a/lib/src/runner.dart b/lib/src/runner.dart
index dadc4d7c9fdfbbcb4ba06b3c84e10aa64ea7d9e9..5fda1aeb51f774cc41cfc4b92e63469d8eaec49f 100644
--- a/lib/src/runner.dart
+++ b/lib/src/runner.dart
@@ -68,7 +68,9 @@ class Runner {
/// Creates a new runner based on [configuration].
factory Runner(Configuration config) {
var loader = new Loader(config);
- var engine = new Engine(concurrency: config.concurrency);
+ var engine = new Engine(
+ concurrency: config.concurrency,
+ runSkipped: config.runSkipped);
var reporter;
switch (config.reporter) {
@@ -89,7 +91,9 @@ class Runner {
case "json":
reporter = JsonReporter.watch(engine,
- verboseTrace: config.verboseTrace, jsLocations: !config.jsTrace);
+ verboseTrace: config.verboseTrace,
+ jsLocations: !config.jsTrace,
+ runSkipped: config.runSkipped);
break;
}
« no previous file with comments | « lib/src/backend/declarer.dart ('k') | lib/src/runner/configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698