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

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

Issue 924793002: Add SkipSlow marker (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index b7aaedb621afa36b6ded49dceb6c3d7bfeec747d..0689ad78a3273a0888222e1e5b20156b15ceb731 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -292,7 +292,8 @@ abstract class TestSuite {
// Handle skipped tests
if (expectations.contains(Expectation.SKIP) ||
- expectations.contains(Expectation.SKIP_BY_DESIGN)) {
+ expectations.contains(Expectation.SKIP_BY_DESIGN) ||
+ expectations.contains(Expectation.SKIP_SLOW)) {
return;
}

Powered by Google App Engine
This is Rietveld 408576698