| 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;
|
| +}
|
|
|