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

Unified Diff: tests/lib/analyzer/test_config.dart

Issue 14436004: Add a new test suite 'analyze_tests' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed a test with type errors Created 7 years, 8 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 | « tests/lib/analyzer/analyze_tests.status ('k') | tests/standalone/io/file_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/analyzer/test_config.dart
diff --git a/tests/lib/analyzer/test_config.dart b/tests/lib/analyzer/test_config.dart
index 1a385d678414ad6053b96e388d2e40178d15073f..d2dcd527a4f688449b951c0923c13d8d519cbf59 100644
--- a/tests/lib/analyzer/test_config.dart
+++ b/tests/lib/analyzer/test_config.dart
@@ -29,3 +29,20 @@ class AnalyzeLibraryTestSuite extends DartcCompilationTestSuite {
bool get listRecursively => true;
}
+
+
+class AnalyzeTestsTestSuite extends DartcCompilationTestSuite {
+ AnalyzeTestsTestSuite(Map configuration)
+ : super(configuration,
+ 'analyze_tests',
+ 'tests',
+ [ 'standalone' ],
+ ['tests/lib/analyzer/analyze_tests.status'],
+ allStaticClean: true);
+
+ bool isTestFile(String filename) {
+ return filename.endsWith('_test.dart');
+ }
+
+ bool get listRecursively => true;
+}
« no previous file with comments | « tests/lib/analyzer/analyze_tests.status ('k') | tests/standalone/io/file_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698