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

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

Issue 9937007: Oops. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 933eb437819df947c73cebcb31a8036a438baaa8..ca063a2ccb5c10dc380d0e27e67477e81daf4d1b 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -264,7 +264,7 @@ class StandardTestSuite implements TestSuite {
// Use the specified predicate, if provided.
if (isTestFilePredicate != null) return isTestFilePredicate(filename);
- filename.endsWith("Test.dart");
+ return filename.endsWith("Test.dart");
}
bool listRecursively() => false;
@@ -385,7 +385,7 @@ class StandardTestSuite implements TestSuite {
return;
}
}
-
+
Set<String> expectations = testExpectations.expectations(testName);
if (configuration['report']) {
// Tests with multiple VMOptions are counted more than once.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698