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

Unified Diff: lib/src/backend/declarer.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 | « doc/configuration.md ('k') | lib/src/runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/backend/declarer.dart
diff --git a/lib/src/backend/declarer.dart b/lib/src/backend/declarer.dart
index 6aef7af3839bceeac2fe289e5feea39d5cc82b83..216865b9f1740f917300db7b4c5a3e02e594058a 100644
--- a/lib/src/backend/declarer.dart
+++ b/lib/src/backend/declarer.dart
@@ -119,12 +119,6 @@ class Declarer {
tags: tags));
var trace = new Trace.current(2);
- // Don't load the tests for a skipped group.
- if (metadata.skip) {
- _entries.add(new Group(name, [], metadata: metadata, trace: trace));
- return;
- }
-
var declarer = new Declarer._(this, _prefix(name), metadata, trace);
declarer.declare(body);
_entries.add(declarer.build());
« no previous file with comments | « doc/configuration.md ('k') | lib/src/runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698